| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 5 months |
| seen | May 16 at 13:08 | |
| stats | profile views | 61 |
|
May 16 |
comment |
Solving the last mile problem in software engineering is this a linx-only question? vagrant, rake, chef-solo, and fpm target linux-environments. |
|
May 15 |
comment |
What is a UNiversal IT Test (UNITT) and how do I prepare for one? note: @Willow is talking about "unitt-test" with double "t" at the end not about unit-test |
|
May 8 |
comment |
The best approach to building a mobile service that's also available when the connection drops? possible duplicate. programmers.stackexchange.com/questions/197366/… |
|
May 8 |
comment |
What is the difference between WCF service and a simple Web service in developing using .NET Framework? @chitanjna: is the beginning of the first sentence of your answer a typo "Web Services WCF Services Web services ..." ? If you change this to "SOAP Web Services ..." this would be a valid answer. |
|
May 7 |
comment |
Is it a good idea to format the code in eclipse using auto format +1 for avoiding merge problems |
|
Mar 27 |
comment |
Unit test cases(JUnit), not by developer but other team members +1 for the distinction between Unit_testing and and other tests like Integration_testing and that non-unit-tests could be implemented by a seperate team. @doc brows answer is semantically the same but this one is shorter. |
|
Feb 11 |
comment |
User Stories - How should it be defined for complex changes involving multiple applications Can you give us an example what you mean with "involving multible applications"? |
|
Feb 11 |
comment |
Programming task to test for focus on maintainability Are you asking for a name of this task? What about Code_review |
|
Jan 12 |
comment |
Why is it often said that the test cases need to be made before we start coding? Do (all/many) test cases need to be made before we start coding?. I know that spec shoud be done before coding. With tdd you usally do not write all testcases upfront before start coding but one at a time. |
|
Jan 7 |
comment |
What does SVN do better than git? +1 the numbring in svn. This number is unique. there are tools to use this number as part of the app-versionnumber xx.yy.zz.12882 where 12882 is the svn version-number. If there is a production problem you can ask vor the versionnumber and you have the exact svn-revision where the software was build with |
|
Jan 6 |
comment |
How to share common methods if objects have different roles? So you mean code inheritance that violates the Liskov_Substitution_Principle ? |
|
Jan 6 |
comment |
How to share common methods if objects have different roles? What do you mean by "roles"? can you give an example? |
|
Jan 6 |
comment |
Handling unexpected features during sprint +1 for "if there are one or two product owners" and the kanban alternative |
|
Jan 4 |
comment |
What are the advantages of expressing information in the simplest possible format? Do you mean "simplest possible format" == "wiki-like-plaintext" ? |
|
Dec 31 |
comment |
My proposed design is usually worse than my colleague's - how do I get better? is the "design is better" your own opinion or the opinion of others? what made the design of your collegue better? Can you quantify these with the solid principles as proposed by @Jimmy Hoffa ? |
|
Dec 11 |
comment |
Representing complex object dependencies @MattDavey: you are right. i will fix my proposal-answer |
|
Dec 11 |
comment |
Representing complex object dependencies Is there only one outer instance or are there many different instances of outer?
An example of only one outer instance is a service-singelton that uses other sub-service-singletons to fullfill its job.
An example of a multi instance whould be a car with tires. One car instance has summer-tires and an other instance has winter-tires. |
|
Nov 19 |
comment |
Are outdated comments an urban myth? +1: good question: I will add "check if comments of changed code are up to date" to our codereviews and "Definition of Done" |
|
Nov 19 |
comment |
How to do dependency Injection and conditional object creation based on type? Can you explain why you think that it is wrong to let CustomerService.Save(CustomerDTO customer) decide which repository to use? |
|
Nov 18 |
comment |
How to design software when using BDD? i am not shure if you realy need uml diagrams. most of my projects lived happyly without them. |