Posts by Rael Gugelmin Cunha • 630 points
5 posts
-
9
votes3
answers1491
viewsA: Strategies to prevent software regression
Well, your question is related to a broader context: Software Test Management. A good basic guide, is the booklet used for the study of certification ISTQB (International Software Testing…
-
1
votes1
answer182
viewsA: encapsulation of a point in two-dimensional Cartesian space
From what I understand, your own class is a POJO, that is, it is a class that we use to carry data from one method to another, and instead of spending all the time X and Y, passing only its class…
javaanswered Rael Gugelmin Cunha 630 -
4
votes5
answers2467
viewsA: Is it feasible to define mandatory fields in the application instead of the database?
Keep in both. The thing I see most nowadays are systems where the rules are only in the application, since currently knowing the minimum database seems to be a great requirement. What happens? In…
-
14
votes2
answers3085
viewsA: How to do a spell check in C#?
Probably existing libraries like Hunspell (already quoted in the chosen answer) or Aspell will solve your problem quickly: these libraries exist for several languages and are used in several…
c#answered Rael Gugelmin Cunha 630 -
22
votes3
answers2308
viewsA: What HTTP status should I use for when a POST parameter is missing?
The 422 is closest to this (I comment more about it). In the 400, is talked about "bad syntax", but this is not the case (syntax error). In the 412, is talked about "preconditions that the requester…