Do you REST?
RESTful Services in a Nutshell and how Ryan explained REST to his wife .[...]
Read more
RESTful Services in a Nutshell and how Ryan explained REST to his wife .[...]
Read more
There are many possibilities creating messages in Java. You can use different data types, but which one fits best? String String exampleString = "Hello World!"; exampleString += " Extended Hello World!"; Advantages easy to use can no...[...]
Read more
Let's have a look at these lines of code: bool computer_computes_correctly = false; if ( 0.3 + 0.6 == 0.9) { computer_computes_correctly = true; } So, what do you expect our variable's value computer_computes_correctly will be? If you...[...]
Read more
Let's find out... Oh hang on, it's about Agility and Architecture ! Robert C. Martin talking about Agility and Architecture and also about how many biological parents you have, actually![...]
Read more
Have a look at these funny lines of code. To protect the innocent you can read a slightly different version below: Useful comments are useful: // Class implementing Anyclassname class Anyclassname { ... } What about the opposite, is th...[...]
Read more
Please have a look at these lines of code and I will explain how to improve their readability. int c = 50; int b = 60; int x = c + b * 24; Does it make sense? Yes? Seems like you are used to read such lines. Oh and by the way, there is at...[...]
Read more