Archive

Latest posts — page 5

Handling and Resolving Conflicts During Rebasing

Rebasing is a common technique to keep a clean and linear history. However, one of the challenges developers face while performing a rebase is dealing with merge conflicts. During a rebase, conflicts may arise if the changes in your branch overlap or contradict the changes in the branch

đŸȘ Publishing the HHGTTG Bash Module on GitHub

I packaged my small Bash module, cleaned the code, added structure, and finally published it on GitHub. In this post, I walk through preparing a project for public release, choosing a layout, documenting it properly, and getting it ready for future automation.

MangoHud: Seeing What Your GPU Is Really Doing (And Why It Matters)

You can’t optimize what you can’t see. MangoHud is the performance overlay that finally tells the truth about your FPS, GPU load, CPU bottlenecks, and frame times. In this guide, we install it, configure it, and use it with Steam games and glxgears — calmly, step by step, without panic.

Avoiding Common Pitfalls in Pipeline Creation

The complexity of Jenkins pipelines can lead to various pitfalls. These pitfalls can introduce inefficiencies, slow down development, and lead to frustrating build failures. Understanding and avoiding these common mistakes is crucial for maintaining a robust and efficient CI/CD process.

Managing Multi-Container Setups with Docker Compose

Docker Compose is a powerful tool that simplifies multi-container orchestration, allowing developers to define, manage, and run multiple containers in a consistent and scalable way. By defining your application’s services, networks, and volumes in a single YAML file (docker-compose.yml).

Basic Network Troubleshooting in Ubuntu: A Comprehensive Guide

Networking issues can be a frustrating experience, especially when you're trying to access essential online services or local resources. Whether you're facing a total network outage, slow connections, or intermittent issues, knowing how to troubleshoot network problems in Ubuntu ...