Introduction to Taskfile: A Modern Build Tool for Efficient Project Management

Taskfile, a versatile and powerful build tool, has emerged as a popular choice among developers looking for a streamlined way to automate and manage their project’s tasks. Whether you’re dealing with complex build scripts or simple automation, Taskfile offers a solution that is both intuitive and highly customizable. What is Taskfile? Taskfile is an open-source…

Cracking The PDF Document Password With The Help Of ChatGPT

In this blog post, we’ll explore how ChatGPT helped me in cracking password of a PDF document. Background Story I have invested some amount in mutual fund ( i.e. Managed Funds or ETF) on one of my brother’s son name around 15 years back. I almost forgot about the the investment. Few days I got…

Enrich Your Spring Applications by Leveraging Python Functionality with GraalVM

We already know that GraalVM compiles your Java applications ahead of time into standalone binaries that start instantly, provide peak performance with no warmup, and use fewer resources. GraalVM also supports polyglot programming where you can use multiple language features in single project. Polyglot programming refers to the practice of using multiple programming languages within…

|

Creating a Custom JUnit5 Extension: A Comprehensive Guide

JUnit 5 has the concept of extensions – a powerful feature that can be used to extend the behavior of JUnit tests. In this blog post, we will dive deep into the world of JUnit 5 extensions, and we’ll walk through the process of creating a custom JUnit5 extension. What is a JUnit5 Extension? In…