<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>heiwiper's website</title><link>https://heiwiper.com/</link><description>Heiwiper's personal website — posts about tools, workflows, and other things.</description><generator>Hugo</generator><language>en-US</language><lastBuildDate>Sat, 15 Aug 2026 20:43:46 +0100</lastBuildDate><atom:link href="https://heiwiper.com/index.xml" rel="self" type="application/rss+xml"/><item><title>A Tour of Magit's Status Interface</title><link>https://heiwiper.com/posts/magit-status-tour/</link><pubDate>Sat, 15 Aug 2026 20:43:46 +0100</pubDate><author>heiwiper</author><guid>https://heiwiper.com/posts/magit-status-tour/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Magit is an Emacs Git client that &lt;a class="no-underline text-link hover" href="https://magit.vc/blogs/#posts-by-users" target="_blank" rel="noopener noreferrer"&gt;is praised by many users&lt;/a&gt;
. It was one of the reasons I switched to Emacs back when I stumbled across &lt;a class="no-underline text-link hover" href="https://www.youtube.com/watch?v=NDP91RNgT4A" target="_blank" rel="noopener noreferrer"&gt;an Emacs video tutorial&lt;/a&gt;
 for the first time. I remember I was impressed by the intuitive UI/UX. In this blog post, I will go over the main Magit interface — Magit Status — and hopefully you will get to see why &lt;a class="no-underline text-link hover" href="https://heiwiper.com/posts/magit-is-awesome/"&gt;Magit is awesome&lt;/a&gt;
.&lt;/p&gt;</description><content:encoded>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Magit is an Emacs Git client that &lt;a class="no-underline text-link hover" href="https://magit.vc/blogs/#posts-by-users" target="_blank" rel="noopener noreferrer"&gt;is praised by many users&lt;/a&gt;
. It was one of the reasons I switched to Emacs back when I stumbled across &lt;a class="no-underline text-link hover" href="https://www.youtube.com/watch?v=NDP91RNgT4A" target="_blank" rel="noopener noreferrer"&gt;an Emacs video tutorial&lt;/a&gt;
 for the first time. I remember I was impressed by the intuitive UI/UX. In this blog post, I will go over the main Magit interface — Magit Status — and hopefully you will get to see why &lt;a class="no-underline text-link hover" href="https://heiwiper.com/posts/magit-is-awesome/"&gt;Magit is awesome&lt;/a&gt;
.&lt;/p&gt;
&lt;h2 id="magit-status"&gt;Magit Status&lt;/h2&gt;
&lt;p&gt;This is the entry point interface that appears when you invoke Magit. It contains quite a lot of information, even if it doesn&amp;rsquo;t seem so at first glance. The following image is an example of the Magit Status interface:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://heiwiper.com/img/magit-status-tour/magit-status.png"
 alt="Magit Status interface"&gt;
&lt;/figure&gt;

&lt;p&gt;There are two sections. The first displays four pieces of information — Head, Merge, Push, and Tag — which refer to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Head&lt;/strong&gt; — the last commit of your local branch&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Merge&lt;/strong&gt; — the remote branch you merge changes into&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Push&lt;/strong&gt; — the remote branch you push changes to (for example, a fork you contribute to)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tag&lt;/strong&gt; — the latest tag on your local branch, and how many commits you are ahead of it&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The second section contains the recent commits, which are collapsed by default to avoid clutter. Here&amp;rsquo;s what the status interface looks like when you open the recent commits section using the &lt;code&gt;TAB&lt;/code&gt; key:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://heiwiper.com/img/magit-status-tour/magit-status-recent-commits.png"
 alt="Magit Status interface with recent commits visible"&gt;
&lt;/figure&gt;

&lt;p&gt;This still doesn&amp;rsquo;t look like the &lt;em&gt;a lot of information&lt;/em&gt; I described earlier, but the missing sections are just as informative: Magit only shows a section when it has something to report, and the lack of a staged or unstaged section here means nothing has changed.&lt;/p&gt;
&lt;p&gt;In the following image, I modified the repository so these sections now appear:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://heiwiper.com/img/magit-status-tour/magit-status-more-sections.png"
 alt="Magit Status interface with more sections visible"&gt;
&lt;/figure&gt;

&lt;p&gt;First, the untracked files (collapsed by default). Second, the changed files under the unstaged section, including their changes (also collapsed). Third, the staged changes, similar to the previous section but containing only what was staged.&lt;/p&gt;
&lt;p&gt;The interesting part about the Magit status interface is that it is interactive: you can stage or unstage changes, and add, delete, or hide untracked files. The list of possible interactions is far too long to cover here. To give you a better picture, it feels like piloting an airplane with the whole control panel within reach — except that here everything is at your fingertips. The following image shows that control panel:&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://heiwiper.com/img/magit-status-tour/magit-help-menu.png"
 alt="Magit help menu"&gt;
&lt;/figure&gt;

&lt;p&gt;The above image shows the Magit commands menu, which is hidden away and can be accessed using the &lt;code&gt;?&lt;/code&gt; key. It lists the commands available from the status interface, covering almost anything you would need, all accessible through a single key — and most are easy to remember because the first letter of the action is the shortcut key.&lt;/p&gt;
&lt;p&gt;Looking back at the screenshots in this post, this single interface gives you the entire state of the repository while also providing all the commands you need, with excellent discoverability whether you are coming from the Git CLI or just starting out with Git through Magit.&lt;/p&gt;
&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;The design behind Magit&amp;rsquo;s status interface never ceases to amaze me. I had planned to cover several other topics, such as how Magit approaches some Git workflows, but I found myself writing a lot about just the status interface, so I decided to keep this post short. In future posts I would like to write about simple workflows like staging, committing, and navigating between branches, as well as more advanced ones like cherry-picking and rebasing (which don&amp;rsquo;t feel advanced at all when you&amp;rsquo;re using Magit).&lt;/p&gt;

&lt;details class="my-8"&gt;
 &lt;summary class="cocomaterial text-lg cursor-pointer"&gt;Still here? Good. Collect your cat.&lt;/summary&gt;
 &lt;figure class="mt-4"&gt;
 &lt;img src="https://heiwiper.com/img/magit-status-tour/cat-reward.webp" alt="Cat reward for A Tour of Magit&amp;#39;s Status Interface"&gt;
 &lt;figcaption class="text-sm text-muted mt-2"&gt;Cat reward&lt;/figcaption&gt;
 &lt;/figure&gt;
&lt;/details&gt;
</content:encoded><category>emacs</category><category>git</category><category>magit</category><enclosure url="https://heiwiper.com/img/magit-status-tour/featured.webp" length="0" type="image/webp"/></item><item><title>Magit Is Amazing!</title><link>https://heiwiper.com/posts/magit-is-awesome/</link><pubDate>Wed, 15 Oct 2025 20:02:21 +0100</pubDate><author>heiwiper</author><guid>https://heiwiper.com/posts/magit-is-awesome/</guid><description>&lt;p&gt;I&amp;rsquo;ve been hearing a lot about &lt;a class="no-underline text-link hover" href="https://jj-vcs.github.io/jj/latest/" target="_blank" rel="noopener noreferrer"&gt;Jujutsu&lt;/a&gt;
 VCS lately, and when I say a lot I mean maybe 5 times this year. But that is a lot for a new VCS I would say.&lt;/p&gt;
&lt;p&gt;The &lt;a class="no-underline text-link hover" href="https://www.stavros.io/posts/switch-to-jujutsu-already-a-tutorial/?utm_source=changelog-news" target="_blank" rel="noopener noreferrer"&gt;article&lt;/a&gt;
 I came across mostly goes through the flexibility of Jujutsu VCS over &lt;a class="no-underline text-link hover" href="https://git-scm.com" target="_blank" rel="noopener noreferrer"&gt;Git&lt;/a&gt;
, or at least that&amp;rsquo;s as far as I managed to read before I lost interest. I was thinking &amp;ldquo;&lt;em&gt;you can easily do this using Git???&lt;/em&gt;&amp;rdquo;, but then I realized that I&amp;rsquo;ve actually never used Git for almost anything besides cloning repositories&amp;hellip; I&amp;rsquo;ve always been using &lt;a class="no-underline text-link hover" href="https://magit.vc" title="Magit! 🪄" target="_blank" rel="noopener noreferrer"&gt;Magit&lt;/a&gt;
 for almost everything.&lt;/p&gt;</description><content:encoded>&lt;p&gt;I&amp;rsquo;ve been hearing a lot about &lt;a class="no-underline text-link hover" href="https://jj-vcs.github.io/jj/latest/" target="_blank" rel="noopener noreferrer"&gt;Jujutsu&lt;/a&gt;
 VCS lately, and when I say a lot I mean maybe 5 times this year. But that is a lot for a new VCS I would say.&lt;/p&gt;
&lt;p&gt;The &lt;a class="no-underline text-link hover" href="https://www.stavros.io/posts/switch-to-jujutsu-already-a-tutorial/?utm_source=changelog-news" target="_blank" rel="noopener noreferrer"&gt;article&lt;/a&gt;
 I came across mostly goes through the flexibility of Jujutsu VCS over &lt;a class="no-underline text-link hover" href="https://git-scm.com" target="_blank" rel="noopener noreferrer"&gt;Git&lt;/a&gt;
, or at least that&amp;rsquo;s as far as I managed to read before I lost interest. I was thinking &amp;ldquo;&lt;em&gt;you can easily do this using Git???&lt;/em&gt;&amp;rdquo;, but then I realized that I&amp;rsquo;ve actually never used Git for almost anything besides cloning repositories&amp;hellip; I&amp;rsquo;ve always been using &lt;a class="no-underline text-link hover" href="https://magit.vc" title="Magit! 🪄" target="_blank" rel="noopener noreferrer"&gt;Magit&lt;/a&gt;
 for almost everything.&lt;/p&gt;
&lt;p&gt;Sometimes I think whether it would have been better if I started using Git CLI and then switched to Magit, that way I would really understand why it&amp;rsquo;s called that way, rather than taking all the amazing work behind it for granted. But I think afterall I wouldn&amp;rsquo;t have discovered Git commands so early in my career if I had just used the Git CLI from the start. I remember I was stashing my code changes back in my early career while other coworkers were struggling to move to another branch without losing their changes.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m pretty sure this isn&amp;rsquo;t all what Jujutsu is about, but now I really don&amp;rsquo;t feel like giving it a try anytime soon because of that article.&lt;/p&gt;

&lt;details class="my-8"&gt;
 &lt;summary class="cocomaterial text-lg cursor-pointer"&gt;Still here? Good. Collect your cat.&lt;/summary&gt;
 &lt;figure class="mt-4"&gt;
 &lt;img src="https://heiwiper.com/img/magit-is-awesome/featured.webp" alt="Featured image for this post for Magit Is Amazing!"&gt;
 &lt;figcaption class="text-sm text-muted mt-2"&gt;Featured image for this post&lt;/figcaption&gt;
 &lt;/figure&gt;
&lt;/details&gt;
</content:encoded><category>emacs</category><category>git</category><enclosure url="https://heiwiper.com/img/magit-is-awesome/featured.webp" length="0" type="image/webp"/></item><item><title>My Journey to Personal Information Management</title><link>https://heiwiper.com/posts/my-journey-to-personal-information-management/</link><pubDate>Thu, 22 Feb 2024 23:00:00 +0100</pubDate><author>heiwiper</author><guid>https://heiwiper.com/posts/my-journey-to-personal-information-management/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Over the past few years, I have tried many tools and methods to manage my personal information in a way that I can trust my system to handle all the information I throw at it, without having to worry about forgetting an idea or an important event. I would always give up after a few days or a month at the most. Over time, I realised that I was trying to apply methods that worked for other people to myself, and that was the main reason why I didn&amp;rsquo;t stick with any of them. After that, I started keeping the ideas that seemed to work and trying to build my own workflow. That&amp;rsquo;s what I&amp;rsquo;m going to talk about in the rest of this post.&lt;/p&gt;</description><content:encoded>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Over the past few years, I have tried many tools and methods to manage my personal information in a way that I can trust my system to handle all the information I throw at it, without having to worry about forgetting an idea or an important event. I would always give up after a few days or a month at the most. Over time, I realised that I was trying to apply methods that worked for other people to myself, and that was the main reason why I didn&amp;rsquo;t stick with any of them. After that, I started keeping the ideas that seemed to work and trying to build my own workflow. That&amp;rsquo;s what I&amp;rsquo;m going to talk about in the rest of this post.&lt;/p&gt;
&lt;h2 id="capturing-thoughts"&gt;Capturing thoughts&lt;/h2&gt;
&lt;p&gt;Capturing thoughts is all about writing down whatever comes into your head and which is not actionable at the moment. This was largely inspired by David Allen, author of Getting Things Done. This method allows me to clear my mind and let go of thoughts that I would otherwise have to remember until I get a chance to either process them or store them somewhere that was inaccessible at the time the thought came to me.&lt;/p&gt;
&lt;p&gt;The problem with capturing thoughts is that sometimes the effort required to capture the thought is greater than the effort required to simply keep the thought in your mind, even if you&amp;rsquo;re aware that you may eventually forget it.&lt;/p&gt;
&lt;p&gt;To overcome this problem, it is important to choose the right tool. Personally, I always go for smartphones, even though I usually prefer to keep my personal information in plain text. But when it comes to capturing thoughts, the data is usually stored temporarily. I would have to move it somewhere else anyway.&lt;/p&gt;
&lt;p&gt;It is also important to choose the right application with the least amount of resistance. The one I use is &lt;a class="no-underline text-link hover" href="https://github.com/nproth/pin" target="_blank" rel="noopener noreferrer"&gt;P!n&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s a very minimalist Android app that I&amp;rsquo;ve been using for a couple of years now. I have never lost a note while using this app and the features it offers are all that I need. I have tried other apps such as &lt;a class="no-underline text-link hover" href="https://github.com/msasikanth/pinnit" target="_blank" rel="noopener noreferrer"&gt;Pinnit&lt;/a&gt;
 which offers very similar features to the former, plus extra features such as setting reminders. But the fact that I have to go into the app to write the note is a deal breaker for me.&lt;/p&gt;
&lt;h2 id="managing-habits"&gt;Managing habits&lt;/h2&gt;
&lt;p&gt;Habits are any tasks I have to do on a regular basis. They can be as simple as daily routines like brushing my teeth. In addition to these daily routines, I like to add other productivity habits that I want to make part of my day, such as reading books.&lt;/p&gt;
&lt;p&gt;I think the most important thing about managing habits is reminders and history. There are many tools that can provide this, even notebooks can be used to track habits. I honestly haven&amp;rsquo;t tried many tools, I&amp;rsquo;ve been using the Android app &lt;a class="no-underline text-link hover" href="https://github.com/iSoron/uhabits" target="_blank" rel="noopener noreferrer"&gt;Loop Habit Tracker&lt;/a&gt;
 for a couple of years now and I find it ticks almost all the boxes for me. The habits can be measured if necessary, the interface is very intuitive and offers useful graphs to keep track of your history. The notifications are persistent, so they don&amp;rsquo;t disappear until I check that I&amp;rsquo;ve completed the task. And there&amp;rsquo;s a bonus: the checkmark widget, which allows me to check my habits from the home screen. I only use it for measurable tasks because I have to update it several times a day. The only problem I have with this app is that I lose my habit notifications every time I restart the phone, which doesn&amp;rsquo;t happen very often.&lt;/p&gt;
&lt;video controls preload="none" poster="/img/my-journey-to-personal-information-management/screen-loop-habit-tracker-poster.webp" class="mx-auto my-8 max-h-[75vh] w-auto max-w-full h-auto rounded-lg bg-black"&gt;
 &lt;source src="https://heiwiper.com/img/my-journey-to-personal-information-management/screen-loop-habit-tracker.mp4" type="video/mp4"&gt;
&lt;/video&gt;
&lt;h2 id="bullet-journal"&gt;Bullet journal&lt;/h2&gt;
&lt;p&gt;I used to think that I would never stick to a non-digital way of keeping track of tasks, notes, events&amp;hellip; I mean, we have smartphones and computers for that now. It just didn&amp;rsquo;t make sense to leave all the features of modern apps like reminders and filters for pen and paper. But now that I have given it a fair chance (5 months so far), I think it serves a good purpose, at least for me. It&amp;rsquo;s not life-changing or anything like that. But mostly it has helped me get into the habit of checking in with myself. When it comes to self-discipline, that turned out to be what I lacked the most.&lt;/p&gt;
&lt;p&gt;I think what is most important about the bullet journal is the practice that is built around it. It&amp;rsquo;s about reviewing everything you write in a timely manner, which has the benefit of weeding out anything that doesn&amp;rsquo;t matter as time goes on. I&amp;rsquo;m still thinking about applying this method in a digital way, but for now I like that it works well enough for my everyday life, so I&amp;rsquo;ll stick with it for this year at least.&lt;/p&gt;
&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;That will be all for this article. I wanted to talk about another tool, but I think it deserves its own post, so I will leave it for another time.&lt;/p&gt;

&lt;details class="my-8"&gt;
 &lt;summary class="cocomaterial text-lg cursor-pointer"&gt;Still here? Good. Collect your cat.&lt;/summary&gt;
 &lt;figure class="mt-4"&gt;
 &lt;img src="https://heiwiper.com/img/my-journey-to-personal-information-management/featured.webp" alt="Featured image for this post for My Journey to Personal Information Management"&gt;
 &lt;figcaption class="text-sm text-muted mt-2"&gt;Featured image for this post&lt;/figcaption&gt;
 &lt;/figure&gt;
&lt;/details&gt;
</content:encoded><category>productivity</category><category>tools</category><enclosure url="https://heiwiper.com/img/my-journey-to-personal-information-management/featured.webp" length="0" type="image/webp"/></item></channel></rss>