<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Sujit Maharjan</title>
    <link>https://maharjansujit.com.np/</link>
    <description>Recent content on Sujit Maharjan</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Sat, 21 Sep 2024 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://maharjansujit.com.np/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>leetcode</title>
      <link>https://maharjansujit.com.np/projects/leetcode/</link>
      <pubDate>Sat, 21 Sep 2024 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/leetcode/</guid>
      <description>&lt;script src=&#34;https://gist.github.com/shubhajeet/c1cc97f346e96d86fe2abbc3177760fe.js&#34;&gt;&lt;/script&gt;</description>
    </item>
    <item>
      <title>Data wrangling with short python code</title>
      <link>https://maharjansujit.com.np/posts/data-wrangling-with-short-python-code/</link>
      <pubDate>Sun, 13 Sep 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/data-wrangling-with-short-python-code/</guid>
      <description>&lt;p&gt;If you work with data on day to day basis. I think you will encounter a problem of incompatible data types ie. some datas are stored in csv files while other are in json or even yaml or toml file. All of these files have their own advantage of disadvantage and sometimes we need to convert all of data to a single format for further analysis. This article presents tools that I used in day to day basis to carry out that particular task.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tools for managing cluster</title>
      <link>https://maharjansujit.com.np/posts/tools-for-managing-cluster/</link>
      <pubDate>Sat, 12 Sep 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tools-for-managing-cluster/</guid>
      <description>&lt;p&gt;When you are in a job that demands you handle or maintain a custer of computers. You will most likely have to do following tasks:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;execute the same set of commands to explore the state of  all the machines&lt;/li&gt;&#xA;&lt;li&gt;run a script on all the machines&lt;/li&gt;&#xA;&lt;li&gt;upload files from all of the machines&lt;/li&gt;&#xA;&lt;li&gt;download file from all of the machines.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Here are the sets of scripts that has been helpful for me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating Debian Package</title>
      <link>https://maharjansujit.com.np/posts/creating-debian-package/</link>
      <pubDate>Thu, 20 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/creating-debian-package/</guid>
      <description>&lt;p&gt;Debain package is a tar file that contains the files required by an application along with some script and description about the application and its depedency. This tutorial will guide you to create a simple debian package by hand.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Create the directory to hold the project&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&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;&#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;mkdir /tmp/&amp;lt;package&amp;gt;_&amp;lt;version&amp;gt;_&amp;lt;architecture&amp;gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Please replace &lt;!-- raw HTML omitted --&gt; by package name, &lt;!-- raw HTML omitted --&gt; by version and &lt;!-- raw HTML omitted --&gt; by the architecture that the package has been created for.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating Homebrew Formula aka Package</title>
      <link>https://maharjansujit.com.np/posts/creating-homebrew-package/</link>
      <pubDate>Thu, 20 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/creating-homebrew-package/</guid>
      <description>&lt;p&gt;The creator of the homebrew package manager is playing with the word brew which stands for the process of preparing a beer. The brew uses the package manager uses terminology that relates to brewing process. The term that we use for the repository in the debian world here is called tap. While, the term used for package is called Formula.&lt;/p&gt;&#xA;&lt;p&gt;Homebrew Formula differs from the Debain package in that homebrew formula does not contain the actual software but contains instruction on how those softwared can be build. The homebrew forumula is just a ruby files that has instruction of how to compile the source code and how those files are placed on the system. Therefore, creating a homebrew package means you write a ruby class which has instruction on how the software source is to be installed on the system.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating your first systemd service</title>
      <link>https://maharjansujit.com.np/posts/creating-your-first-systemd-service/</link>
      <pubDate>Thu, 20 Aug 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/creating-your-first-systemd-service/</guid>
      <description>&lt;p&gt;Systemd is at the time of writing this article is the de-facto init system for Linux. Systemd has three primary aspect:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;System and service manager&lt;/li&gt;&#xA;&lt;li&gt;Software platform for developing other applications&lt;/li&gt;&#xA;&lt;li&gt;&amp;ldquo;Glue&amp;rdquo; between the kernel and user applications&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h1 id=&#34;units&#34;&gt;&#xA;  Units&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#units&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Systemd manages units. Units have dependency and systemd handles that dependency. Location of unit file paths:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;/lib/systemd/system :; for package-installed units&lt;/li&gt;&#xA;&lt;li&gt;/etc/systemd/system :: for administrator-configured units&lt;/li&gt;&#xA;&lt;li&gt;/run/gystemd/system :; for non-persistent runtime modification&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Unit files are named in following convention name.type. For example: ssh.socket, example.service. The unit file follows toml like syntax.&lt;/p&gt;</description>
    </item>
    <item>
      <title>DateBS</title>
      <link>https://maharjansujit.com.np/projects/datebs/</link>
      <pubDate>Sat, 11 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/datebs/</guid>
      <description>&lt;p&gt;A python/javascript library that converts date from BS to AD and vice versa and is intended to be used in google sheet addon, libreoffice calc extension, pandas.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://gsuite.google.com/marketplace/app/datebs/40502736063&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Install from G-Suite Marketplace&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://extensions.libreoffice.org/en/extensions/show/892&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Install libreoffice Addin&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h1 id=&#34;use&#34;&gt;&#xA;  Use&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#use&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;google-sheet-addon-libreoffice-calc-extention&#34;&gt;&#xA;  Google Sheet AddOn/ LibreOffice Calc Extention&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#google-sheet-addon-libreoffice-calc-extention&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;The addons expose following custom function so that date from BS to AD and vice versa.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Facebook Chat Bot From Google App Script</title>
      <link>https://maharjansujit.com.np/projects/fbchatbotgas/</link>
      <pubDate>Sun, 05 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/fbchatbotgas/</guid>
      <description>&lt;p&gt;A Google App Script library that ease in creation of fbChat Bot using Google App Script. Suitable for personal project.&lt;/p&gt;&#xA;&lt;h1 id=&#34;usage&#34;&gt;&#xA;  Usage&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#usage&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;ProjectId:Mv5AiDrYjIUDuX4K_XPiByj6333tZbdFa&lt;/p&gt;&#xA;&lt;p&gt;Go to Resources &amp;gt; Libraries and add the above library using the above project id.&lt;/p&gt;&#xA;&lt;h1 id=&#34;learn-by-example&#34;&gt;&#xA;  Learn By Example&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#learn-by-example&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;sample-code-to-create-echo-bot&#34;&gt;&#xA;  Sample code to create echo bot&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#sample-code-to-create-echo-bot&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;var&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fbBot&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;Bot&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;ACCESS_TOKEN&lt;/span&gt;,&lt;span style=&#34;color:#a6e22e&#34;&gt;VERIFY_TOKEN&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;function&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;doGet&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;) {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;verify&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;function&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;doPost&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;) {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;Logger&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;log&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;received &amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;JSON&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;stringify&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;));&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addResponse&lt;/span&gt;( &lt;span style=&#34;color:#a6e22e&#34;&gt;messageEvent&lt;/span&gt; =&amp;gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;sendMessage&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;messageEvent&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;sender&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;id&lt;/span&gt;,&lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;Message&lt;/span&gt;().&lt;span style=&#34;color:#a6e22e&#34;&gt;addText&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;got text: &amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;messageEvent&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;text&lt;/span&gt;));&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    },&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;messageEvent&lt;/span&gt; =&amp;gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#66d9ef&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;true&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    }&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    );&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;response&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;create-quick-reply&#34;&gt;&#xA;  Create quick reply&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#create-quick-reply&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fbBot&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;Message&lt;/span&gt;();&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addText&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Hi, How may I help you?&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;Logger&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;log&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Added Text &amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;JSON&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;stringify&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;));&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;createReply&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Buy&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;BUY&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;Logger&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;log&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Added First Reply &amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;JSON&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;stringify&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;));&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;createReply&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Inquire&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;INQUIRE&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;Logger&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;log&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Added Replies &amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;JSON&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;stringify&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;));&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;sendMessage&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;messageEvent&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;sender&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;id&lt;/span&gt;,&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;creating-a-generic-template&#34;&gt;&#xA;  Creating a Generic Template&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#creating-a-generic-template&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fbBot&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;Message&lt;/span&gt;();&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;template&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fbBot&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;Template&lt;/span&gt;();&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;buttons&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fbBot&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;Buttons&lt;/span&gt;();&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;buttons&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addUrlButton&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Website&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;https://maharjansujit.com.np&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;buttons&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addPostbackButton&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Checkout&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;BUY checkout&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;buttons&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addCallButton&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Contact&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;+977 9888888888&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;template&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addElement&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Gas&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;subtitle&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;https://maharjansujit.com.np/logo.jpg&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;url&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;https://maharjansujit.com.np&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#a6e22e&#34;&gt;buttons&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addTemplate&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;template&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&#34;https://github.com/shubhajeet/fbBotFromGAS&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;!-- raw HTML omitted --&gt; github &lt;!-- raw HTML omitted --&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>SheetDb (A Google App Script Library)</title>
      <link>https://maharjansujit.com.np/projects/sheetdb/</link>
      <pubDate>Sun, 05 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/sheetdb/</guid>
      <description>&lt;p&gt;Google app script library that lets you use google sheet like a key value pair database.&lt;/p&gt;&#xA;&lt;h1 id=&#34;usage&#34;&gt;&#xA;  Usage&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#usage&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;ProjectId:Mh3fuMDJ6YrJ-WBuWKeMtlj6333tZbdFa&lt;/p&gt;&#xA;&lt;p&gt;Go to Resources &amp;gt; Libraries and add the above library using the above project id.&lt;/p&gt;&#xA;&lt;h1 id=&#34;learn-by-example&#34;&gt;&#xA;  Learn By Example&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#learn-by-example&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;open-a-spreadhseet-as-sheetdb&#34;&gt;&#xA;  Open a spreadhseet as sheetdb&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#open-a-spreadhseet-as-sheetdb&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;var&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;sid&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;1Y6N-jNCF23TyE8WbV8FEEfUcdDDCw5IlvNt9wCOwg9w&amp;#34;&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;db&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;SheetDb&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;sid&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;SheetName&amp;#34;&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;add-record&#34;&gt;&#xA;  Add record&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#add-record&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;value&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; {&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;first_name&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;sujit&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;last_name&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;maharjan&amp;#34;&lt;/span&gt;};&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;db&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;set&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;value&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;read-record&#34;&gt;&#xA;  Read record&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#read-record&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;value&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;db&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;get&lt;/span&gt;({&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;first_name&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;sujit&amp;#34;&lt;/span&gt;});&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;update-record&#34;&gt;&#xA;  Update record&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#update-record&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;db&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;update&lt;/span&gt;({&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;first_name&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;sumit&amp;#34;&lt;/span&gt;},{&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;first_name&amp;#34;&amp;#34;:&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;sujit&lt;/span&gt;&lt;span style=&#34;color:#960050;background-color:#1e0010&#34;&gt;&amp;#34;&lt;/span&gt;});&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;delete-record&#34;&gt;&#xA;  Delete record&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#delete-record&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;db&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;removeRows&lt;/span&gt;({&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;first_name&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;sujit&amp;#34;&lt;/span&gt;});&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&#34;https://github.com/shubhajeet/SheetDb&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;!-- raw HTML omitted --&gt; github &lt;!-- raw HTML omitted --&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>telgram chat bot from Gooogle App Script</title>
      <link>https://maharjansujit.com.np/projects/tgchatbotgas/</link>
      <pubDate>Sun, 05 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/tgchatbotgas/</guid>
      <description>&lt;p&gt;This projects intends to serve as library to ease in creation of telegram chat Bot using Google App Script.&lt;/p&gt;&#xA;&lt;h1 id=&#34;usage&#34;&gt;&#xA;  Usage&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#usage&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;ProjectId:MPYd_nqgatBHdfoP1CC636z6333tZbdFa&lt;/p&gt;&#xA;&lt;p&gt;Go to Resources &amp;gt; Libraries and add the above library using the above project id.&lt;/p&gt;&#xA;&lt;h1 id=&#34;learn-by-example&#34;&gt;&#xA;  Learn By Example&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#learn-by-example&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;sample-code-to-create-echo-bot&#34;&gt;&#xA;  Sample code to create echo bot&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#sample-code-to-create-echo-bot&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;new&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;Bot&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;token&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;addResponse&lt;/span&gt;(&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  (&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;) =&amp;gt; {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        &lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;mes&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; { &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;text&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;text&lt;/span&gt; };&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;sendMessage&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;chat&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;id&lt;/span&gt;,&lt;span style=&#34;color:#a6e22e&#34;&gt;mes&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        &lt;span style=&#34;color:#66d9ef&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;true&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    }, &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    (&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;) =&amp;gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;true&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;function&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;doPost&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;   &lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;response&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;response&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;request&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;   &lt;span style=&#34;color:#66d9ef&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;response&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;manually-get-update&#34;&gt;&#xA;  Manually get update&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#manually-get-update&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;updates&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;JSON&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;parse&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;getUpdates&lt;/span&gt;()).&lt;span style=&#34;color:#a6e22e&#34;&gt;result&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#66d9ef&#34;&gt;for&lt;/span&gt; ( &lt;span style=&#34;color:#a6e22e&#34;&gt;upIndex&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;0&lt;/span&gt;; &lt;span style=&#34;color:#a6e22e&#34;&gt;upIndex&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;updates&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;length&lt;/span&gt;; &lt;span style=&#34;color:#a6e22e&#34;&gt;upIndex&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;++&lt;/span&gt;)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;let&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;update&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;updates&lt;/span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;upIndex&lt;/span&gt;];&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#a6e22e&#34;&gt;BOT&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;respondToMessage&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;update&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;message&lt;/span&gt;);&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  }&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&#34;https://github.com/shubhajeet/telbot&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;!-- raw HTML omitted --&gt; github &lt;!-- raw HTML omitted --&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>NL Store Facebook Shopping Chat Bot</title>
      <link>https://maharjansujit.com.np/projects/nlstore-facebook-shoppoing-bot/</link>
      <pubDate>Sat, 20 Jun 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/nlstore-facebook-shoppoing-bot/</guid>
      <description>&lt;p&gt;NL Store is a simple chat bot to help the current consumers of the store to see the present stock detail and order things online. The aim of this chat bot is to reduce the number of consumers that are present in the physical store so as social distancing can be maintained during the period of COVID 19 pandemic.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://m.me/localstore&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;!-- raw HTML omitted --&gt; Demo chat bot for curious people &lt;!-- raw HTML omitted --&gt;&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://m.me/nlstorefb&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;!-- raw HTML omitted --&gt; Order from Nlstore &lt;!-- raw HTML omitted --&gt;&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;features-and-limitations&#34;&gt;&#xA;  Features and limitations&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#features-and-limitations&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Customer can inquire about the price of available items&lt;/li&gt;&#xA;&lt;li&gt;Customer can ask for the delivery of the items&lt;/li&gt;&#xA;&lt;li&gt;The online payment fabcility is not available as this chat bot is only developed for Lalitpur, Nepal where online payment system is not widespread and easily accessible for general public.&lt;/li&gt;&#xA;&lt;li&gt;The service is available only for the old customer who we have already previosly delivered the product as the postal delivery system is not developed enough to deliver by provided address.&lt;/li&gt;&#xA;&lt;li&gt;The chat bot only supports english for now. The support for the Nepali and Nepal Bhasa will be added in future if the customer demand them.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h1 id=&#34;privacy-policy&#34;&gt;&#xA;  Privacy Policy&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#privacy-policy&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;The application does not store any information about the customer when you just inquire for stuff available for sell. However, when the customer places and order we will have to store the customer name and things that have been ordered. The information will be used to issue bill as per the legal requirement and used for packaging the order for a quick pick up or home delivery with some delivery charge.&lt;/p&gt;</description>
    </item>
    <item>
      <title>NepalDataScrapper</title>
      <link>https://maharjansujit.com.np/projects/nepaldatascrapper/</link>
      <pubDate>Tue, 09 Jun 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/nepaldatascrapper/</guid>
      <description>&lt;p&gt;A python/javascript project that scraps the data from website to collect the data about Nepal for the use in further analysis through pandas or libreoffice sheet or google sheet. Currently scrapping of the NEPSE Share price has only be implemented.&lt;/p&gt;&#xA;&lt;h1 id=&#34;usage&#34;&gt;&#xA;  Usage:&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#usage&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;h2 id=&#34;python-library&#34;&gt;&#xA;  Python library:&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#python-library&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&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;&#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;pip install nepaldatascrapper&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;example-code&#34;&gt;&#xA;  example code&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#example-code&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&#xA;&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;&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;import&lt;/span&gt; sys&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;from&lt;/span&gt; nepaldatascrapper &lt;span style=&#34;color:#f92672&#34;&gt;import&lt;/span&gt; NEPSE&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;nepse &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; NEPSE()&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;def&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;nepseSharePrice&lt;/span&gt;(symbol,date&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;):&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;return&lt;/span&gt; nepse&lt;span style=&#34;color:#f92672&#34;&gt;.&lt;/span&gt;getSharePrice(symbol,date)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;if&lt;/span&gt; __name__ &lt;span style=&#34;color:#f92672&#34;&gt;==&lt;/span&gt; &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;__main__&amp;#34;&lt;/span&gt;:&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    print(nepseSharePrice(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;BPCL&amp;#34;&lt;/span&gt;,&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;2020-07-01&amp;#34;&lt;/span&gt;))&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;google-sheet-addonlibreoffice-calc-extension&#34;&gt;&#xA;  Google Sheet Addon/Libreoffice Calc Extension&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#google-sheet-addonlibreoffice-calc-extension&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&#xA;&lt;p&gt;This is simple google sheet add ons that adds the custom function in google sheets which will make it easier to get the Nepal related Data in google sheets. Currently, it can get the NEPSE stock price data for you.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Telegram Chat Bot</title>
      <link>https://maharjansujit.com.np/posts/telegram-chat-bot/</link>
      <pubDate>Mon, 27 Apr 2020 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/telegram-chat-bot/</guid>
      <description>&lt;p&gt;ChatBot is an application that is designed to receive and send messages. ChatBot is dependent on the chat application same as a software is based on your operating system. Most chat application provides an API interface that lets an application send and receive messages. I will be going through a simple telegram chat bot application.&lt;/p&gt;&#xA;&lt;p&gt;Telegram provides an API so that bot can interface with telegram. Telegram bot can be registered by chatting with a telegram bot called BotFather. Just search for BotFather in telegram and start chatting by sending &lt;code&gt;/start&lt;/code&gt; text message. You can then create a new bot by sending text message &lt;code&gt;/new bot&lt;/code&gt;. When registering process is completed, BotFather will provide you with token that will look something like &lt;code&gt;110201543:AAHdqTcvCH1vGWJxfSeofSAs0K5PALDsaw&lt;/code&gt;. This token is used to authenticate the bot. You can make requests on behalf of bot using following syntax. &lt;code&gt;https://api.telegram.org/bot&amp;lt;token&amp;gt;/METHOD_NAME&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Working with SSL Certificate</title>
      <link>https://maharjansujit.com.np/posts/working-with-ssl-certificate/</link>
      <pubDate>Wed, 16 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/working-with-ssl-certificate/</guid>
      <description>&lt;p&gt;SSL stands for Secure Sockets Layer which can be defined as a standard security protocol for establishing encrypted links between a web server and a browser so that user&amp;rsquo;s data privacy is respected and nobody is spying in the middle which is very crucial in the day and age especially after snowden revelation.&lt;/p&gt;&#xA;&lt;p&gt;Openssl tool set can be used as a arsenal for carrying out almost every task you can think of related to ssl certificate. This guide defines the method of Certificate Signing Requests (CSRs) and generating the self signed certificate and finally converting the ssl certificate in the required format.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Installing Apache Spark on Mac</title>
      <link>https://maharjansujit.com.np/posts/installing-apache-spark-on-mac/</link>
      <pubDate>Wed, 02 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/installing-apache-spark-on-mac/</guid>
      <description>&lt;p&gt;Apache Spark is the best method of producing the result from the big data.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Installing apache-spark&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;brew install apache-spark&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ol start=&#34;2&#34;&gt;&#xA;&lt;li&gt;starting spark&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;spark-shell&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Installing Hbase on Mac</title>
      <link>https://maharjansujit.com.np/posts/installing-hbase-on-mac/</link>
      <pubDate>Wed, 02 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/installing-hbase-on-mac/</guid>
      <description>&lt;p&gt;Apache Hbase is the open source implementation of the Google&amp;rsquo;s big table NOSQL Database. It is the distributed, column oriented, NOSQL database that can use hadoop to store data. It provides us with the fast storage and retrieval of naturally occuring sparse data that may have a variable schema. We can further utilize the another layer like Apache pheonix, Apache hive to get SQL syntax compability.&lt;/p&gt;&#xA;&lt;p&gt;Since the Hbase extends the Hadoop ecosystem we should first install Hadoop. Please follow the previous post on the installation of the Hadoop on Mac before proceding.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tutorial on Hbase shell command</title>
      <link>https://maharjansujit.com.np/posts/tutorial-on-hbase-shell/</link>
      <pubDate>Wed, 02 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tutorial-on-hbase-shell/</guid>
      <description>&lt;p&gt;Apache HBase is the column oriented NOSQl Database that is based on the Big Table paper by Google. It works on the top of hadoop and thus supports fast storage and retrieval of naturally.&lt;/p&gt;&#xA;&lt;p&gt;Apache HBase schema is different from the SQL schema in which we have a number of columns which hold the data of specific size. In Hbase all the data is type is stored in bytes and the table is divided into column family which can hold multiple number of columns. The schema must be defined in such a way that the data of the column family are accessed together. This design enables Hbase to access the data in the same column family together thus enabling to retrieve the data faster.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Installing Hadoop on Mac</title>
      <link>https://maharjansujit.com.np/posts/installing-hadoop-on-mac/</link>
      <pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/installing-hadoop-on-mac/</guid>
      <description>&lt;p&gt;Hadoop is the open source implementation of the Google File System and the basis of the present hype in the Big Data. If want to explore and are seeking for the carrer in the Big Data ecosystem then learning about the Hadoop is must. The process of installing the Hadoop is not straightforward as it requires setting up the specific version of the java and right configuration. The steps written below specifies the method that I used to deploy Hadoop on my personal Mac.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hosting react app on gitlab pages</title>
      <link>https://maharjansujit.com.np/posts/hosting-react-app-on-gitlab-pages/</link>
      <pubDate>Thu, 06 Dec 2018 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/hosting-react-app-on-gitlab-pages/</guid>
      <description>&lt;p&gt;React is the javascript library that helps to create a stateful userside web application. If you are planning to create an app that does not require server side computation at all then gitlab pages will be an excellent method to disclouse your creation to the rest of the world. The gitlab pages are not only free like github pages but also offers additional feature of being able to add your own domain name and ssl certificate.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Image Captioning Demystifying Deep Learning and How to Get Started</title>
      <link>https://maharjansujit.com.np/posts/image-captioning-demystifying-deep-learning-and-how-to-get-started/</link>
      <pubDate>Sat, 30 Dec 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/image-captioning-demystifying-deep-learning-and-how-to-get-started/</guid>
      <description>&lt;p&gt;We conceived AI(Artificial Intelligence), more specifically Deep Learning as a complex and difficult task. I do agree with concept that Deep Learning is difficult but that doesnot mean that there is no intitution behind it.&lt;/p&gt;&#xA;&lt;h1 id=&#34;introduction&#34;&gt;&#xA;  Introduction&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#introduction&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;p&gt;For me at least I think eveything started with Alan Turing and his turing machine. He formulated theory of the what can the finite state machine can be used to achieve. He put forward the theory of Universal turing Machine. In short its a finite state machine that can simulate other finite state machine. It then begs the queestion are human finite machine. Can we simulate human beings with computer?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Increase Open Access Project Accessibility By Considering Web Accessibility</title>
      <link>https://maharjansujit.com.np/posts/increase-open-access-project-accesbility-by-considering-web-accessibility/</link>
      <pubDate>Sun, 03 Dec 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/increase-open-access-project-accesbility-by-considering-web-accessibility/</guid>
      <description>&lt;p&gt;As a AI (Artificial Intelligence) Researchers what I do is I look at the previous data or history and infer rules from it. So lets pick into history to understand the importance of open access, open research, open education and web accessibility.&lt;/p&gt;&#xA;&lt;p&gt;History subject may have been for many of you a headache in your school as you had to memorize the events and dates not analyze the cause and effect of such event. This is what makes the History subject a path-shower for future for intelligent person.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Deep Learning with pytorch</title>
      <link>https://maharjansujit.com.np/posts/deep-learning-with-pytorch/</link>
      <pubDate>Sat, 25 Nov 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/deep-learning-with-pytorch/</guid>
      <description>&lt;p&gt;Alan Turing in his paper described a Universal Truing Machine. A universal turing machine is a king of finite state machine which can simulate other finite sstate machine.&lt;/p&gt;&#xA;&lt;p&gt;We can extend this idea. What if Human are finite state machine? This leads to the possibility of Human being simulated by Computers. THis may go against our instituion as Human relatively behaves in undeterministic way but this can be just because of large number of state that a human posses.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tech Talk 24th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-24th-session/</link>
      <pubDate>Fri, 16 Jun 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-24th-session/</guid>
      <description>&lt;p&gt;The 24th session of Tech Talk was held on 16th June,2017 in F Hall of Civil Department, Pulchowk. We had 41 participant during this event.&lt;/p&gt;&#xA;&lt;p&gt;Host:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Biplab Gautam&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Speaker&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Topic&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Downloads&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Rosina Adhikari&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Bio Chips&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;&#34; &gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Anisha Karki&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Voided and non-voided concrete slab&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;&#34; &gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;</description>
    </item>
    <item>
      <title>Tech Talk 25th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-25th-session/</link>
      <pubDate>Fri, 16 Jun 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-25th-session/</guid>
      <description>&lt;p&gt;The 24th session of Tech Talk is going to be held on 16th June,2017.&lt;/p&gt;&#xA;&lt;p&gt;Schedule:&lt;/p&gt;&#xA;&lt;p&gt;4:00 pm : 5:00 pm Guest Speaker&lt;/p&gt;&#xA;&lt;p&gt;Join Facebook event:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.facebook.com/events/120430758549242/&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;facebook event&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tech Talk 23rd session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-23rd-session/</link>
      <pubDate>Mon, 05 Jun 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-23rd-session/</guid>
      <description>&lt;p&gt;The 23rd session of Tech Talk is going to be held on 5th June,2017 in third floor of C-Block ,Pulchowk Campus. (Department of Electrical Engineering)&lt;/p&gt;&#xA;&lt;p&gt;Host:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Biplab Gautam&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Speaker:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Basanta Chaulagain&lt;/li&gt;&#xA;&lt;li&gt;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Topic Registration and slide submission deadline: 20th May 2017 (Saturday) 8 pm to email id &lt;a href=&#34;mailto:070BEX443@ioe.edu.np&#34; &gt;070BEX443@ioe.edu.np&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Schedule:&lt;/p&gt;&#xA;&lt;p&gt;5:00 pm-: 5:30 pm 1st speaker presentation&lt;/p&gt;&#xA;&lt;p&gt;5:30 pm : 6:00 pm 2nd speaker presentation&lt;/p&gt;&#xA;&lt;p&gt;Join Facebook event:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.facebook.com/events/112983052631472/&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;facebook event&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tech Talk 22nd session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-22nd-session/</link>
      <pubDate>Tue, 23 May 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-22nd-session/</guid>
      <description>&lt;p&gt;The 22nd session of Tech Talk is going to be held on 21st May,2017 in third floor of C-Block ,Pulchowk Campus. (Department of Electrical Engineering)&lt;/p&gt;&#xA;&lt;p&gt;Host:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Sujit Maharjan&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Speaker:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Richa Adikhari&lt;/li&gt;&#xA;&lt;li&gt;Pratik Luitel&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Topic Registration and slide submission deadline: 20th May 2017 (Saturday) 8 pm to email id &lt;a href=&#34;mailto:070BEX443@ioe.edu.np&#34; &gt;070BEX443@ioe.edu.np&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Schedule:&lt;/p&gt;&#xA;&lt;p&gt;8:30-8:45 1st speaker presentation&lt;/p&gt;&#xA;&lt;p&gt;8:45-9:00 2nd speaker presentation&lt;/p&gt;&#xA;&lt;p&gt;9:00-9:15 Break and extra adjustment time&lt;/p&gt;&#xA;&lt;p&gt;Join Facebook event:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.facebook.com/events/265503843915766/&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;facebook event&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tech Talk 21st session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-21st-session/</link>
      <pubDate>Sun, 26 Feb 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-21st-session/</guid>
      <description>&lt;p&gt;Tech Talk 21st session was successfully conducted on 26th February 2017. At Disaster Hack, Jhamshikel, Lalitpur Nepal at 8:30 am in the morning.&lt;/p&gt;&#xA;&lt;p&gt;Hosted by:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Ranjana Kushwaha&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Speakers and there topics:&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Name&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Topic&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Class&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Downloads&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Anmol Paudel&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Genetic Engineering&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMnY1BFbHVzUEtfWDg2a2M5MUdENEpudkdjMHVB/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Ayush Kafle&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Digital Image Processing&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMnYkgxWHUtWWU2Y2s/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;#Links to Youtube Videos&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Anmol Paudel &amp;ldquo;Genetic Engineering&amp;rdquo;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- raw HTML omitted --&gt;</description>
    </item>
    <item>
      <title>Tech Talk 20th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-20th-session/</link>
      <pubDate>Sun, 19 Feb 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-20th-session/</guid>
      <description>&lt;p&gt;Tech Talk 20th session was successfully conducted on 19th February 2017. At Disaster Hack, Jhamshikel, Lalitpur Nepal at 8:30 am in the morning.&lt;/p&gt;&#xA;&lt;p&gt;Hosted by:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Sujit Maharjan&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Speakers and there topics:&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Name&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Topic&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Class&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Downloads&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Biplab Gautam&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Bitcoin&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMnYjJoY2Zxai1FeXc/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Bikki Chantyal&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Reimann Hypothesis&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMnSnpDa0dQMTJZZ2c/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;#Links to Youtube Videos&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Biplab Gautam &amp;ldquo;Bitcoin&amp;rdquo;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- raw HTML omitted --&gt;</description>
    </item>
    <item>
      <title>Tech Talk 19th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-19th-session/</link>
      <pubDate>Sun, 05 Feb 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-19th-session/</guid>
      <description>&lt;p&gt;Tech Talk 19th session was successfully organized on 5th February 2017 at 8:30 am at Pulchowk Engineering Campus. The event was hosted by Misan Baral. There were two speakers in the event who shade lights on different topics.&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Name&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Topic&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Class&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Downloads&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Bipin Lekhark&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;DirectX Gaming&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/open?id=0B3go4KpYllMnZHdNNl90Y3ZhazA&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Gaurav khatri&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Speech Recognition&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/open?id=1By2ktv_Nfx5cy8mZrUtnOPS_mRfABq-giCkN0cm84qM&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;#Links to Youtube Videos&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Bipin Lekhak &amp;ldquo;DirectX Gaming&amp;rdquo;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- raw HTML omitted --&gt;</description>
    </item>
    <item>
      <title>Tech Talk 19th session information</title>
      <link>https://maharjansujit.com.np/posts/registration-for-tech-talk/</link>
      <pubDate>Mon, 23 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/registration-for-tech-talk/</guid>
      <description>&lt;p&gt;The 19th session of the Tech Talk has been scheduled on 5th February 2017. The event will take place in 2nd floor of top of the world cafe in Jhamshikel, Lalitpur.&lt;/p&gt;&#xA;&lt;p&gt;Host : Misan Baral&lt;/p&gt;&#xA;&lt;p&gt;Speakers:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Gaurav Khatri&lt;/li&gt;&#xA;&lt;li&gt;Bipin Lekak&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Speakers and Host are requested to fill this form at &lt;a href=&#34;https://maharjansujit.com.np/TechTalk/registration&#34; &gt;Registration&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Event activity:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Presentation&lt;/li&gt;&#xA;&lt;li&gt;Podcast Recording&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Map:&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;</description>
    </item>
    <item>
      <title>Tech Talk 18th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-18th-session/</link>
      <pubDate>Fri, 20 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-18th-session/</guid>
      <description>&lt;p&gt;Tech Talk 18th session was successfully organized on 20th January 2017 at 11 am at Pulchowk Engineering Campus. The event was hosted by Ranjana Kushwaha. There were four speakers in the event who shade lights on different topics.&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Name&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Topic&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Class&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Downloads&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Ayush Kafle&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Productivity&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;&#34; &gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Sujit Maharjan&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Automation&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/open?id=1zQzKAs5Or1jyTgfMPOTmLwWpGZvsJ7sRyYmPKnaamZ4&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Aashish Bhandari&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Project Soli&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMnelBVMUdoLWJMVkk/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Amir Rimal&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Freudian Personality Theory&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMncHRFak9LeDdUSXc/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h1 id=&#34;links-to-youtube-videos&#34;&gt;&#xA;  Links to Youtube Videos&#xA;  &lt;a class=&#34;heading-link&#34; href=&#34;#links-to-youtube-videos&#34;&gt;&#xA;    &lt;i class=&#34;fa fa-link&#34; aria-hidden=&#34;true&#34; title=&#34;Link to heading&#34;&gt;&lt;/i&gt;&#xA;    &lt;span class=&#34;sr-only&#34;&gt;Link to heading&lt;/span&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Ayush Kafle &amp;ldquo;Productivity&amp;rdquo;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- raw HTML omitted --&gt;</description>
    </item>
    <item>
      <title>Tech Talk 17th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-17th-session/</link>
      <pubDate>Fri, 13 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-17th-session/</guid>
      <description>&lt;p&gt;Tech Talk 17th session was successfully organized on 17th January 2017 at 4 pm at Pulchowk Engineering Campus. The event was hosted by Suyogya Pun. There were three speakers in the event who shade lights on different topics.&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Name&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Topic&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Class&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;Downloads&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Ranjana Kushwaha&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;The telephone System&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/open?id=0B3go4KpYllMnU2ViQnF0bWloZ2c&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Sujit Maharjan&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Concensus and BlockChain Model&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/open?id=0B3go4KpYllMna1hzS3V1V1lKVk0&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt; &lt;a href=&#34;bitcoin.org/bitcoin.pdf&#34; &gt;paper&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Bidur Khanal&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;Brain Computer Interfacing&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;070BEX&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;&lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMncDV6YmdxaUtYZms/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;</description>
    </item>
    <item>
      <title>MethStudio (Graphics Project)</title>
      <link>https://maharjansujit.com.np/projects/methstudio-graphics-project/</link>
      <pubDate>Sun, 08 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/projects/methstudio-graphics-project/</guid>
      <description>&lt;p&gt;This is the project I created 2016 as a graphics project for my computer graphics class. The main purpose of this project was to learn about computer graphics. This program uses OpenGl and GSL (Graphics Shading Language) for creating molecular formula. It uses Qt as the graphical window manager. It can draw molecular formula from the coordinate file of molecular formula.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/shubhajeet/graphics-project&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;&lt;!-- raw HTML omitted --&gt;&lt;!-- raw HTML omitted --&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tech Talk 16th session</title>
      <link>https://maharjansujit.com.np/posts/tech-talk-16th-session/</link>
      <pubDate>Sun, 08 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/tech-talk-16th-session/</guid>
      <description>&lt;p&gt;Tech Talk 16th session was successfully organized on 6th January 2017 at 8:30 am at Pulchowk Engineering Campus. The event was hosted by Sujit Maharjan. There were four speakers in the event who shade lights on different topics.&lt;/p&gt;&#xA;&lt;p&gt;| Name               | Topic                          | Class  | Downloads |&#xA;|&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;ndash;+&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;mdash;&amp;ndash;+&amp;mdash;&amp;mdash;&amp;ndash;+&amp;mdash;&amp;mdash;&amp;mdash;&amp;ndash;|&#xA;| Aditi Gajurel      | The mystery behind electronics | 072BEL |           |&#xA;| Manish Jayswal     | Internet                       | 071BCT |           |&#xA;| Basanta Chaulagain | Cryonics                       | 071BCT | &lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMnOFAxWm1qbWFNMnM/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt; |&#xA;| Ravi Kiran Aryal   | Cryptocurrency - Bitcoin       | 072BEX | &lt;a href=&#34;https://drive.google.com/file/d/0B3go4KpYllMncDQ1WFl0SWFpU0U/view?usp=sharing&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slide&lt;/a&gt; |&lt;/p&gt;</description>
    </item>
    <item>
      <title>Review of The GrownUps by Gillain Flynn</title>
      <link>https://maharjansujit.com.np/posts/review-of-the-grownups-by-gyllian_flynn/</link>
      <pubDate>Wed, 21 Dec 2016 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/review-of-the-grownups-by-gyllian_flynn/</guid>
      <description>&lt;p&gt;If your the person who loved the book &amp;lsquo;Gone Girl&amp;rsquo;. This story would not disappoint you. The story puts you in the similar situation and creates a similar mysterious environment. A girl who looks like a normal being but is actually manipulative and would use sex and anything for her own gain.&lt;/p&gt;&#xA;&lt;p&gt;The story begins with a canny young woman is struggling to survive by perpetrating various levels of mostly harmless fraud. On a rainy April morning, she is reading auras at Spiritual Palms when Susan Burke walks in. A keen observer of human behavior, our unnamed narrator immediately diagnoses beautiful, rich Susan as an unhappy woman eager to give her lovely life a drama injection. However, when the &amp;ldquo;psychic&amp;rdquo; visits the eerie Victorian home that has been the source of Susan’s terror and grief, she realizes she may not have to pretend to believe in ghosts anymore. Miles, Susan’s teenage stepson, doesn’t help matters with his disturbing manner and grisly imagination. The three are soon locked in a chilling battle to discover where the evil truly lurks and what, if anything, can be done to escape it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to solve mnemosyne, anki not opening error in ubuntu 16.10</title>
      <link>https://maharjansujit.com.np/posts/mnemosyne_anki_ubuntu_error/</link>
      <pubDate>Wed, 23 Nov 2016 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/mnemosyne_anki_ubuntu_error/</guid>
      <description>&lt;p&gt;If your like me and have recently updated your ubuntu to 16.10 yaketty and found your flash card/space repition application not working your not alone.&lt;/p&gt;&#xA;&lt;p&gt;As explained in &lt;a href=&#34;https://wiki.debian.org/Qt4WebKitRemoval&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;debian wiki&lt;/a&gt;. The problem is that the QtWebKit has been removed from the Qt4, related to migration to Qt5/blink. Due to the reason if your using any application that depends on PyQt4 and QtWebKit are broken till date. The problem will only be solved when the application is updated to use the upgraded version of the library.&lt;/p&gt;</description>
    </item>
    <item>
      <title>A new website for COA labs released</title>
      <link>https://maharjansujit.com.np/posts/a-new-website-for-coa-lab-released/</link>
      <pubDate>Mon, 14 Nov 2016 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/a-new-website-for-coa-lab-released/</guid>
      <description>&lt;p&gt;My cpp lab work has been released on the new site &lt;a href=&#34;http://coalab.maharjansujit.com.np&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;coalab.maharjansujit.com.np&lt;/a&gt;. If your are intrested to looking into my implementation or else are stuck and need some hint Please feel free to take a look at it.&lt;/p&gt;&#xA;&lt;p&gt;If you find any error on the code please feel free to submit the corrected code in the github.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Warning : For the students.&lt;/strong&gt;&#xA;1. &lt;em&gt;Copying whole source code is not recommended&lt;/em&gt;&#xA;2. &lt;em&gt;The code may be faulty and you may have to correct it&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>A new website for cpp labs released</title>
      <link>https://maharjansujit.com.np/posts/a-new-website-for-cpp-labs-released/</link>
      <pubDate>Mon, 14 Nov 2016 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/a-new-website-for-cpp-labs-released/</guid>
      <description>&lt;p&gt;My cpp lab work has been released on the new site &lt;a href=&#34;http://cpplab.maharjansujit.com.np&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;cpplab.maharjansujit.com.np&lt;/a&gt;. If your are intrested to looking into my implementation or else are stuck and need some hint Please feel free to take a look at it.&lt;/p&gt;&#xA;&lt;p&gt;If you find any error on the code please feel free to submit the corrected code in the github.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Warning : For the students.&lt;/strong&gt;&#xA;1. &lt;em&gt;Copying whole source code is not recommended&lt;/em&gt;&#xA;2. &lt;em&gt;The code may be faulty and you may have to correct it&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>A new website for Numerical method labs released</title>
      <link>https://maharjansujit.com.np/posts/a-new-website-for-numerical-method-labs-released/</link>
      <pubDate>Mon, 14 Nov 2016 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/a-new-website-for-numerical-method-labs-released/</guid>
      <description>&lt;p&gt;My cpp lab work has been released on the new site &lt;a href=&#34;http://nmlab.maharjansujit.com.np&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;nmlab.maharjansujit.com.np&lt;/a&gt;. If your are intrested to looking into my implementation or else are stuck and need some hint Please feel free to take a look at it.&lt;/p&gt;&#xA;&lt;p&gt;If you find any error on the code please feel free to submit the corrected code in the github.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Warning : For the students.&lt;/strong&gt;&#xA;1. &lt;em&gt;Copying whole source code is not recommended&lt;/em&gt;&#xA;2. &lt;em&gt;The code may be faulty and you may have to correct it&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Review of No One Knows by JT Ellision</title>
      <link>https://maharjansujit.com.np/posts/review-of-no-one-knows-by-jt-ellision/</link>
      <pubDate>Mon, 14 Nov 2016 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/review-of-no-one-knows-by-jt-ellision/</guid>
      <description>&lt;p&gt;No One Knows is a thriller novel by The Girl on Train and The Husband&amp;rsquo;s Secret, New York Times bestselling author J.T.i Ellision. The book has carried on the authors reputation of bringing twist on every pages and making readers engage and guessing till the whole pages of the book has been turned.&lt;/p&gt;&#xA;&lt;p&gt;The story begins with the Aubrey Hamilton&amp;rsquo;s husband being declared dead by state of Tennessee. Aubrry has suffered these 5 years of husband&amp;rsquo;s disseparance or may be his death in grief and being suspect of her husband&amp;rsquo;s murder. Should Aubrry move on? Or Should she proceed to find out what actually happened to her husband?&lt;/p&gt;</description>
    </item>
    <item>
      <title>Beta release of classweb</title>
      <link>https://maharjansujit.com.np/posts/classweb-beta-release/</link>
      <pubDate>Tue, 16 Dec 2014 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/posts/classweb-beta-release/</guid>
      <description>&lt;p&gt;I would like to annouce the beta release of the &lt;a href=&#34;https://class.maharjansujit.com.np&#34;  class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Classweb&lt;/a&gt;. &lt;em&gt;Please get your hands dirty on testing the site.&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;The major purpose of this website is to act as the ultimate place for getting class notification via CR or teacher or other friends directly. So students dont have to miss out on any class notices.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://maharjansujit.com.np/about/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://maharjansujit.com.np/about/</guid>
      <description>&lt;!-- raw HTML omitted --&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;iframe &#xA;    src=&#34;https://registry.jsonresume.org/shubhajeet?theme=kendall&#34; &#xA;    style=&#34;width: 100%; height: 100vh; border: none;&#34;&gt;&#xA;&lt;/iframe&gt;</description>
    </item>
  </channel>
</rss>
