Posts on codeskraps https://codeskraps.com/posts/ Recent content in Posts on codeskraps Hugo en-us me@codeskraps.com (codeskraps) me@codeskraps.com (codeskraps) Wed, 29 Jan 2025 14:30:17 +0100 Move /home Folder https://codeskraps.com/posts/2025/move_home_folder/ Wed, 29 Jan 2025 14:30:17 +0100me@codeskraps.com (codeskraps) https://codeskraps.com/posts/2025/move_home_folder/ <p>You can move the <code>/home</code> folder on Ubuntu, but you must do it carefully to avoid breaking your system. Below are the steps to safely move <code>/home</code> to a new location.</p> React Native vs Kotlin Multiplatform https://codeskraps.com/posts/2024/react_vs_kmp/ Thu, 03 Oct 2024 17:16:34 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/2024/react_vs_kmp/ <h2 id="introduction">Introduction</h2> <p>In the ever-evolving world of mobile app development, choosing the right cross-platform framework can be a game-changer for businesses and developers alike. Two prominent contenders in this space are React Native and Kotlin Multiplatform (KMP). Both offer unique approaches to the challenge of writing code once and deploying it across multiple platforms. This article will dive deep into the strengths and considerations of each, helping you make an informed decision for your next project.</p> Simplifying MVI Architecture https://codeskraps.com/posts/2024/mvi_architecture/ Fri, 27 Sep 2024 13:45:09 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/2024/mvi_architecture/ <p>Model-View-Intent (MVI) is a powerful architectural pattern for building user interfaces, especially in Android development. In this post, we&rsquo;ll explore a helper class that simplifies the implementation of MVI, making it easier to manage state, handle user intents, and emit actions in your application.</p> When .gitignore Doesnt Seem to Work: A Quick Fix https://codeskraps.com/posts/2024/gitignore_not_working/ Sun, 02 Jun 2024 18:14:23 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/2024/gitignore_not_working/ <p>As developers, we&rsquo;ve all been there. You&rsquo;ve added a file or folder to your <code>.gitignore</code>, but Git keeps tracking it anyway. What gives? Let&rsquo;s dive into why this happens and how to fix it.</p> Configuring SSH Keys for Individual Git Commands https://codeskraps.com/posts/2024/git_ssh_command/ Wed, 17 Apr 2024 16:56:53 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/2024/git_ssh_command/ <p>When working with Git repositories, you often need to authenticate using SSH keys. While you can configure SSH settings globally, there are times when you need to use a specific SSH key for just one command. This is particularly useful when cloning a new repository or adding a submodule, where there isn&rsquo;t yet a local <code>.git/config</code> file to modify.</p>