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, 02 Oct 2024 18:14:23 +0200 When .gitignore Doesnt Seem to Work: A Quick Fix https://codeskraps.com/posts/gitignore_not_working/ Wed, 02 Oct 2024 18:14:23 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/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/git_ssh_command/ Wed, 02 Oct 2024 16:56:53 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/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> Simplifying MVI Architecture https://codeskraps.com/posts/mvi_architecture/ Fri, 27 Sep 2024 13:45:09 +0200me@codeskraps.com (codeskraps) https://codeskraps.com/posts/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>