<?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>Posts on weblog://arumugam.j</title>
    <link>https://arumugam.net/posts/</link>
    <description>Recent content in Posts on weblog://arumugam.j</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 13 Feb 2021 14:22:41 +0000</lastBuildDate>
    <atom:link href="https://arumugam.net/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Deleting Multiple Messages from Google Voice</title>
      <link>https://arumugam.net/deleting-multiple-messages-from-google-voice/</link>
      <pubDate>Sat, 13 Feb 2021 14:22:41 +0000</pubDate>
      <guid>https://arumugam.net/deleting-multiple-messages-from-google-voice/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; This is no longer the case. Google voice app now has a multi-select and delete button&lt;/p&gt;
&lt;p&gt;If you wanted to delete a bulk of messages in google voice, you&amp;rsquo;re out of luck. Once you select multiple messages, it doesn&amp;rsquo;t show you a delete button. Only the archive button.&lt;/p&gt;
&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://arumugam.net/content/images/2021/02/messages.png&#34;&gt;&lt;/p&gt;
&lt;p&gt;You have to open individual messages and select delete from the drop-down and click a confirmation box for every single message. But, if you want to delete multiple entries of anything else, say voicemails, you can do so.&lt;/p&gt;</description>
    </item>
    <item>
      <title>GPG cheatsheet</title>
      <link>https://arumugam.net/gpg-cheatsheet/</link>
      <pubDate>Thu, 25 Jul 2019 02:01:48 +0000</pubDate>
      <guid>https://arumugam.net/gpg-cheatsheet/</guid>
      <description>&lt;p&gt;To generate keypair :&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;gpg --gen-key
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;listing&#34;&gt;Listing:&lt;/h2&gt;
&lt;p&gt;To list all public keys&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;gpg --list-keys
gpg -k
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To List private keys -&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;gpg --list-secret-keys
gpg -K
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;encryptdecrypt&#34;&gt;Encrypt/Decrypt:&lt;/h2&gt;
&lt;p&gt;The option &lt;code&gt;-a&lt;/code&gt; is for armor (Base64 output)&lt;br&gt;
To encrypt &lt;code&gt;gpg -a -e -r &amp;lt;recipient&amp;gt; [file]&lt;/code&gt;&lt;br&gt;
To decrypt &lt;code&gt;gpg -a -d [file]&lt;/code&gt;&lt;/p&gt;
&lt;h2 id=&#34;sign&#34;&gt;Sign:&lt;/h2&gt;
&lt;p&gt;To create a signed version of the file &lt;code&gt;gpg [-a] -s &amp;lt;file&amp;gt;&lt;/code&gt;&lt;br&gt;
To create a separate signature &lt;code&gt;gpg --detach-sign -a &amp;lt;file&amp;gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Verify and decrypt are the same thing. Or use the specific verify option&lt;br&gt;
&lt;code&gt;gpg --verify file.asc file&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Java Config with YAML</title>
      <link>https://arumugam.net/java-config-with-yaml/</link>
      <pubDate>Thu, 06 Jun 2019 23:21:35 +0000</pubDate>
      <guid>https://arumugam.net/java-config-with-yaml/</guid>
      <description>&lt;p&gt;If you have ever worked with Spring Framework in Java, know the comfort and flexibility of the application configuration that comes with Spring.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Have the configuration stored in properties or YML files&lt;/li&gt;
&lt;li&gt;Overriding default configuration based on profiles&lt;/li&gt;
&lt;li&gt;Overriding that with environment variables&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Adding to these it also has other &amp;lsquo;springy&amp;rsquo; features like value injection and couple of other property sources. But if you need a small, light weight, handy application you definitely don&amp;rsquo;t want to go with a spring boot application. Spring-boot apps are known to have a delayed startup and leaves you with a bulky jar.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Low cost, Low energy home server</title>
      <link>https://arumugam.net/low-cost-low-power-home-server/</link>
      <pubDate>Sun, 23 Apr 2017 21:59:00 +0000</pubDate>
      <guid>https://arumugam.net/low-cost-low-power-home-server/</guid>
      <description>Setup a home server powerful enough for media streaming, costing less than $200 and consumes less than 20W. Runs Plex media server, NextCloud and Ghost Blog</description>
    </item>
    <item>
      <title>Terminal Shortcuts</title>
      <link>https://arumugam.net/shortcuts/</link>
      <pubDate>Fri, 02 Dec 2016 20:24:17 +0000</pubDate>
      <guid>https://arumugam.net/shortcuts/</guid>
      <description>&lt;p&gt;For reference&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Shortcuts in Bash&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Ctrl + L&lt;/code&gt; Clears the screen&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + c&lt;/code&gt; Terminate the command&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + R&lt;/code&gt; Search command history backwards&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + a&lt;/code&gt; go to the start of the command line&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + e&lt;/code&gt; go to the end of the command line&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + k&lt;/code&gt; delete from cursor to the end of the command line&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + u&lt;/code&gt; delete from cursor to the start of the command line&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Ctrl + w&lt;/code&gt; delete from cursor to start of word&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + b&lt;/code&gt; move backward one word (or go to start of word the cursor is currently on)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + f&lt;/code&gt; move forward one word (or go to end of word the cursor is currently on)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + d&lt;/code&gt; delete to end of word starting at cursor&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + c&lt;/code&gt; capitalize to end of word starting at cursor&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + u&lt;/code&gt; make uppercase from cursor to end of word&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + l&lt;/code&gt; make lowercase from cursor to end of word&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Alt + t&lt;/code&gt; swap current word with previous&lt;/li&gt;
&lt;li&gt;&lt;code&gt;!!&lt;/code&gt; run last command&lt;/li&gt;
&lt;li&gt;&lt;code&gt;!word&lt;/code&gt; – run the most recent command that starts with ‘word’&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Shortcuts Pantheon Terminal&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
