About computer science, crafting software, and what happens in between
  • Running Sonar locally

    Post thumbnail
    Post thumbnail
    Using Sonar helps improve the code quality. Sonar identifies code smells, bugs, and vulnerabilities, it provides an overview of the code coverage and complexity and finds duplications. There are more advantages if one integrates it in the pipeline and decides to customise its rule, but it is possible to gain... [Read More]
    Tags:
  • Distribution of UUIDs

    Post thumbnail
    Post thumbnail
    In a project, I have documents identified by UUIDs. For the lack of a better strategy, I decided to partition them based on the value of the UUID identifier. For example, my first partition could be 00000000-0000-0000-0000-000000000000 - 0fffff-ffff-ffff-ffff-ffffffffffff, the second one 10000000-0000-0000-0000-000000000000 and 1fffff-ffff-ffff-ffff-ffffffffffff, and so on. [Read More]