Technical Articles

In-depth guides, insights, and best practices for modern software engineering

Block sequence in Java

The challenge

Consider the following array:

[1, 12, 123, 1234, 12345, 123456, 1234567, 12345678, 123456789, 12345678910, 1234567891011...]

If we join …

Read Article →

int32 to IPv4 in Java

The challenge

Take the following IPv4 address: 128.32.10.1

This address has 4 octets where each octet is a single byte (or 8 bits).

  • 1st octet 128 has …

Read Article →