<?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>Technology on blog.nath.page</title>
    <link>https://blog.nath.page/tags/technology/</link>
    <description>Recent content in Technology on blog.nath.page</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Tue, 14 Jul 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://blog.nath.page/tags/technology/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>A Minimal Emacs Config</title>
      <link>https://blog.nath.page/posts/emacs/</link>
      <pubDate>Tue, 14 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.nath.page/posts/emacs/</guid>
      <description>&lt;p&gt;All I wanted was to use &lt;code&gt;magit&lt;/code&gt; today, but Spacemacs, which I have used for years, wouldn&amp;rsquo;t allow me. I could not figure out what the problem was&amp;mdash;it likely had something to with dependencies that were out of sync. Failing to resolve the issue, I decided to reinstall emacs and configure it from scratch (with some great LLM help). The fruits of this tinkering is in the &lt;code&gt;init.el&lt;/code&gt; file below. It is only about 160 lines long, but covers the vast majority of my requirements surprisingly well. This is a brief log of how this config file came about.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Using Obsidian</title>
      <link>https://blog.nath.page/posts/obsidian/</link>
      <pubDate>Thu, 09 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.nath.page/posts/obsidian/</guid>
      <description>&lt;h2 id=&#34;background&#34;&gt;Background&lt;/h2&gt;
&lt;p&gt;I have been using the note-taking software, &lt;a href=&#34;https://obsidian.md/&#34;&gt;Obsidian&lt;/a&gt;, for a little more than a year, and it has been a major quality of life upgrade for me. Prior to this, I used &lt;a href=&#34;https://evernote.com/&#34;&gt;Evernote&lt;/a&gt; for several years, thanks to the recommendation of &lt;a href=&#34;https://tim.blog/wp-content/uploads/2018/07/95-phil-libin.pdf&#34;&gt;Tim Ferriss&lt;/a&gt;. Initially, I was a happy customer, but over the years, the subscription costs mounted and the quality of the app degraded. I tested &lt;a href=&#34;https://joplinapp.org/&#34;&gt;Joplin&lt;/a&gt; and &lt;a href=&#34;https://www.notion.com/&#34;&gt;Notion&lt;/a&gt; but they proved inadequate for my needs. Finally, I landed on Obsidian, finding it through the videos of &lt;a href=&#34;https://www.youtube.com/watch?v=DbsAQSIKQXk&#34;&gt;No Boilerplate&lt;/a&gt;.  My usage pattern has settled down enough over the past year for me to be able to discuss it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tasks vs Calendar</title>
      <link>https://blog.nath.page/posts/tvc/</link>
      <pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.nath.page/posts/tvc/</guid>
      <description>&lt;h2 id=&#34;calendar&#34;&gt;Calendar&lt;/h2&gt;
&lt;p&gt;A calendar is to be used for the following.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Time blocking,&lt;/li&gt;
&lt;li&gt;Marking events that will occur regardless of your presence,&lt;/li&gt;
&lt;li&gt;Marking due dates.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I am using the Full Calendar plugin. Every event is a separate note under a specific folder. The events appear in a calendar timeline.&lt;/p&gt;
&lt;h2 id=&#34;task-manager&#34;&gt;Task Manager&lt;/h2&gt;
&lt;p&gt;A task manager is used for tracking all tasks associated with projects. Be as specific as you need to be. Tasks do not necessarily have due dates. Set scheduled dates and priority for tasks as required.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hosting Passwords</title>
      <link>https://blog.nath.page/posts/password/</link>
      <pubDate>Thu, 11 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.nath.page/posts/password/</guid>
      <description>&lt;h2 id=&#34;the-three-phases-of-password-hosting&#34;&gt;The Three Phases of Password Hosting&lt;/h2&gt;
&lt;p&gt;For the longest time, I hesitated to use a password manager. Trusting a cloud service for such an important matter did not sit well with me. For years, I kept all my passwords in a notebook. This was &lt;strong&gt;the pen and paper phase&lt;/strong&gt;. It worked, but over time, the content grew too large. Changing passwords got messy. And if I lost my notebook (which, fortunately, did not happen), I would be in trouble. Maintaining a backup ultimately meant taking photos and trusting internet-touching devices and internet-based services.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ImageMagick</title>
      <link>https://blog.nath.page/posts/imagemagick/</link>
      <pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.nath.page/posts/imagemagick/</guid>
      <description>&lt;p&gt;Just found out about this neat tool called &lt;code&gt;imagemagick&lt;/code&gt;. I’m using it to compress jpg images small webp images for use on this blog.&lt;/p&gt;
&lt;p&gt;Install it (in arch-based linux) using this command.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;sudo pacman -S imagemagick
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Then run&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;magick image.jpg -resize 1600x -quality &lt;span style=&#34;color:#ae81ff&#34;&gt;75&lt;/span&gt; image.webp
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;to create a compressed version of the image. Here the max pixel width is set at 1600 px, and the quality is at 75 (moderate compression).&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
