Author Archives: oliver-joisten.se

Requirements and Design in Software Development: The Foundation of Successful Projects

SDC Journey as a Software Developer

Introduction In software development, requirements and design are two critical phases that lay the foundation for the success of a project. Requirements engineering involves eliciting, analyzing, specifying, validating, and managing the requirements for a software system, while the design phase involves creating a plan for how the software will be structured and how its various […]

Using Linux on Windows with WSL 2: Tips on Installation and Usage

wsl Journey as a Software Developer

Windows has long been the go-to operating system for most PC users, thanks to its ease of use and broad compatibility with hardware and software. However, for those who are interested in the power and flexibility of Linux, there has always been a trade-off: either switch to Linux completely or set up a dual-boot system, […]

Git 101: A Beginner’s Guide to Understanding and Using Git

download 1 Journey as a Software Developer

Introduction Git is a distributed version control system that helps you track changes to your code over time. It’s used by software developers, web developers, and other professionals who work with code. Git makes it easy to collaborate with others on a project and keep track of changes to your codebase. With Git, you can: […]

Posted in Git

Essential Linux Commands for Developers: 50 Must-Know Commands

download Journey as a Software Developer

Linux has become an essential operating system in the world of information technology, thanks to its open-source and free nature. With its increasing popularity, it’s crucial for software developers and DevOps professionals to have a strong command over Linux commands to make their tasks easier and more efficient. In this blog post, we will discuss […]

10 Essential Clean Coding Techniques

kiss Journey as a Software Developer

Here are 10 critical techniques for writing clean, organized, and understandable code in any programming language: 1. Keep it Simple The first and most important rule of writing clean code is to keep it simple and readable. As the saying goes, “Keep It Simple, Stupid”. The simpler your code is, the fewer errors it will have […]

The Importance of Writing Clean Code

df8d7000 Journey as a Software Developer

Introduction Writing clean code is a crucial aspect of software development that ensures the longevity and maintainability of a project. Clean code is characterized by clear, concise, and self-explanatory variable and function names, as well as well-organized and consistent indentation and spacing. The purpose of this blog post is to explore the importance of writing […]