index.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <!DOCTYPE html>
  2. <html lang="en-us">
  3. <head>
  4. <title>
  5. Posts | codeskraps
  6. </title>
  7. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <meta name="description" content="Your website description">
  10. <meta name="generator" content="Hugo 0.134.3">
  11. <link rel="canonical" href="https://codeskraps.com/posts/" >
  12. <link href="https://codeskraps.com/posts/index.xml" rel="alternate" type="application/rss+xml" title="codeskraps" >
  13. <link href="https://codeskraps.com/posts/index.xml" rel="feed" type="application/rss+xml" title="codeskraps" >
  14. <link href="/css/style.min.ee0d47e4d4346c71a65a9e873108c81ffae54d60a2fc2338f6df394eb4b25a82.css" rel="stylesheet">
  15. </head>
  16. <body>
  17. <div class="flexWrapper">
  18. <header class="headerWrapper">
  19. <div class="header">
  20. <div>
  21. <a class="terminal" href="https://codeskraps.com/">
  22. <span>me@codeskraps.com ~ $</span>
  23. </a>
  24. </div>
  25. <input class="side-menu" type="checkbox" id="side-menu">
  26. <label class="hamb" for="side-menu"><span class="hamb-line"></span></label>
  27. <nav class="headerLinks">
  28. <ul>
  29. <li>
  30. <a href="https://codeskraps.com/projects/" title="" >
  31. ~/projects</a>
  32. </li>
  33. <li>
  34. <a href="https://codeskraps.com/about/" title="" >
  35. ~/about</a>
  36. </li>
  37. <li>
  38. <a href="https://codeskraps.com/posts/" title="" >
  39. ~/posts</a>
  40. </li>
  41. </ul>
  42. </nav>
  43. </div>
  44. </header>
  45. <div class="content">
  46. <main class="main">
  47. <div>
  48. <div class="listHeader">
  49. <h1>Posts</h1>
  50. </div>
  51. <div>
  52. <a class="postListLink" href="https://codeskraps.com/posts/gitignore_not_working/">
  53. <div class="postListItem" role="listitem">
  54. <div class="postHeader">
  55. <span class="postTitle">When .gitignore Doesnt Seem to Work: A Quick Fix</span>
  56. <time class="postDate" datetime="2024-10-02">October 2, 2024</time>
  57. </div>
  58. <div class="postExcerpt">
  59. <p><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></p>
  60. </div>
  61. </div>
  62. </a>
  63. <a class="postListLink" href="https://codeskraps.com/posts/git_ssh_command/">
  64. <div class="postListItem" role="listitem">
  65. <div class="postHeader">
  66. <span class="postTitle">Configuring SSH Keys for Individual Git Commands</span>
  67. <time class="postDate" datetime="2024-10-02">October 2, 2024</time>
  68. </div>
  69. <div class="postExcerpt">
  70. <p><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></p>
  71. </div>
  72. </div>
  73. </a>
  74. <a class="postListLink" href="https://codeskraps.com/posts/mvi_architecture/">
  75. <div class="postListItem" role="listitem">
  76. <div class="postHeader">
  77. <span class="postTitle">Simplifying MVI Architecture</span>
  78. <time class="postDate" datetime="2024-09-27">September 27, 2024</time>
  79. </div>
  80. <div class="postExcerpt">
  81. <p><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></p>
  82. </div>
  83. </div>
  84. </a>
  85. </div>
  86. </div>
  87. </main>
  88. </div>
  89. <footer class="footer">
  90. <span>Built with <a href="https://gohugo.io" class="footerLink">Hugo</a> and <a href="https://github.com/LordMathis/hugo-theme-nightfall" class="footerLink">Nightfall</a> theme</span>
  91. </footer>
  92. </div>
  93. </body>
  94. </html>