Among Us Strategy: Defeat The Impostors

Among Us is an online space-themed multiplayer deduction game developed and published by InnerSloth. The game divides the players into two groups – space crews and impostors. The space crews have goals—one, to complete all tasks essential for their survival.

JUnit 4 – Run Test Method More than Once

This post demonstrates how to perform repeated tests in JUnit 4 for this post. It involves creating a class that implements the TestRule interface, another class that implements Statement interface and a new annotation.

Limit Depth of Inheritance in Java

[wp_ad_camp_5] This post demonstrates how to limit the depth of Inheritance in your codes. We will use a class InheritanceUtils from Apache Commons Lang. Inheritance is Evil Yes, inheritance is evil. If we subclass too much in our code base,

Using Spring Retry API

Did a method just throw an Exception? Well, we could re-invoke it a few times more before giving up using Spring’s Retry API. Last time we touched on BackOff and related interfaces and classes which is used in this API.

MySQL JSON Type

MySQL has started supporting JSON column data type since MySQL 5.7.8. This post explores this new type and its basic usages.

Modify XML Element Content in Java using XSLT

This post demonstrates how to modify some parts of the XML content in Java using XSLT. The example herein is rather straight-forward but will provide us a basic working codes before going further to learn the more advanced stuff.