/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

nickjanetakis.com
| | haacked.com
1.8 parsecs away

Travel
| | Git bisect is an underrated but very powerful tool to include in your debugging toolbox. In short, it helps you find the commit that introduced a bug. Here's an example of how to use it.
| | thedarkside.frantzmiccoli.com
2.4 parsecs away

Travel
| | tl;dr git bisect can make you save eons when you are looking in your git history to find the exact revision that created a problem. This is a quick tutorial. A lot inspired from Automated git bisect will make your day - I am writing this article because it did make my day! The example project Let's do a bit of work together. mkdir demo-git-bisect cd demo-git-bisect git init echo 'Yeah,...
| | daily.dev
1.1 parsecs away

Travel
| | [AI summary] A tutorial explaining how to use Git bisect to efficiently identify the specific commit that introduced a bug in a codebase.
| | mydeveloperplanet.com
30.6 parsecs away

Travel
| In this blog, you will learn how to setup a Maven multi-module project which consists out of a Spring Boot backend and a Vue.js frontend. The application itself will not be created, only the setup of the project is covered in this blog. Enjoy! 1. Introduction Many applications consist out of a backend and a...