Many projects force their code to be formatted.
We use spotless for this purpose.
It can check for propper formatting, and also format the code for you.
Then build pipeline checks if the code is properly formatted.
Failing pipelines due to formatting errors are annoying and cost a lot of time and money.
This blog proposes a solution.
Git has some hooks that you can install.
Hooks are scripts that are run at specific events such as pre-commit, post-commit, pre-push, prepare-commit-msg, pre-rebase, etc.
I created a script that formats the code in the pre-commit hook.
It does:
-
This scripts tracks any of the java or kotlin files in the staging area.
-
Formats the code using spotless if there are any java/kotlin files.
-
It adds the files from step 1 again to the staging area, to pick up the re-formatted changes.
The commit now contains formatted code.
This saves a lot of time, instead of finding out that the build failed 5 minutes later.
The pre-commit
hook looks like:
If you use another formatter, you can easily update the script.
You can install it by running the following command in your repository root:
Continue reading →
Welcome back to the final blog in de series "How to hack a box"!
In this blog we’ll cover the basics of Privilege Escalation and see it in practice on the Blocky box from Hack The Box.
Continue reading →
Welcome back to the blog series about how to hack a box!
In the past few blogs we’ve gone through a few steps which gives you an idea of how you can hack a box.
We went from the Introduction, to Exploration, to Gaining Access.
In this blog, we’ll cover the basics of Enumeration.
|
DISCLAIMER: Never attempt to execute one of these steps on a machine where you don’t have explicit permission for from the owner.
This is illegal and will get you in trouble.
|
Continue reading →
The time is right. Your work is done. The last letter of your Java code has been written. You let the IDE compile the code and a new running version of your app is ready to be released. You’ve done this a thousand times, there’s nothing new on the horizon. The question of what lies beneath, what happens under the hood, has never occurred to you. Until now!
Continue reading →
When code evolves we usually deprecate old code.
Sometimes we come across deprecations without any hints with what to replace it with.
Kotlin has a solution for this by allowing you to specify a replace instruction.
For example, we created have an old REST client.
Continue reading →
Spring boot supports a non-blocking programming model with the spring-webflux module.
Webflux supports a Reactive API using the Reactor library Flux and Mono API types.
This model forces you to write your code in a different style than most people are used to.
It generally is much harder to follow and debug.
This post shows you a short example of using Kotlin’s Coroutines instead of Reactor to write your code in a more imperative and easier to follow style.
It includes examples of using Retrofit as HTTP client to access external API’s concurrently in a non-blocking way.
Continue reading →
Apaches fluent httpclient API is a facade API to simplify the httpclients usage for standard use cases.
It’s also better readable and results in cleaner code.
In this post we’ll see how to use a custom SSLContext with the fluent API.
We’ll use the new 5.0 version because it contains some changes compared to 4.x.
Continue reading →
Welcome back to the blog series about how to hack a box! In this third post I’ll guide you through the second step: gaining access.
|
DISCLAIMER: Never attempt to execute one of these steps on a machine where you don’t have explicit permission for from the owner.
This is illegal and will get you in trouble.
|
Continue reading →
In Clojure we can get part of a vector collection using the subvec
function. The function takes a vector as argument, a required begin index and optional end index. The returned value is a vector with part of the values of the original vector starting from the begin up to the end index. If we leave out the optional end index, the size of the vector is used as end index.
In the following example we use the subvec
function with and without the end index:
Continue reading →
To split a collection in Clojure we can use the split-with
and split-at
functions. The split-with
function takes a predicate as first argument and a colletion as second argument. The function will return a vector with two items. The first item is the result of the function take-while
with the given predicate. The second item in the result vector is the resul of the drop-while
function with the same predicate.
We use the split-at
function with a number as first argument followed by a collection to split based on a given number of items. Instead of using a predicate we can define the number of items that we want as the first item in the result vector. The first item in the result vector is the result of invoking the take
function. The resulting number of items of the collection will be the second item in the result vector and is achieved by invoking the drop
function.
Continue reading →
In Clojure we can use the shuffle
function with a collection argument to get a new collection where the items of the input collection are re-ordered randomly. The function delegates to the Java java.util.Collections#shuffle
method.
In the following example code we use the shuffle
method:
Continue reading →
In Clojure we can format a string using Common Lisp format syntax or the Java format string syntax. In the post we will look at the how we can use the Java format string syntax. We must use the format
function in the clojure.core
namespace. The method delegates to the standard JDK String#format
method. The first argument is a format string followed by one or more arguments that are used in the format string. We can look up the syntax of the format string in the Javadoc for the java.util.Formatter
class.
In the following example code we use the format
function with different format strings:
Continue reading →