<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Thanks to antville.org</title>
    <link>https://oksoft.antville.org/</link>
    <description>Adding Value with limited resources</description>
    <language>en</language>
    <pubDate>Wed, 17 Jun 2026 19:03:01 GMT</pubDate>
    <dc:date>2026-06-17T19:03:01Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Why do I care for Linux?</title>
      <link>https://oksoft.antville.org/stories/2295157/</link>
      <description>&lt;p&gt;I don't care that much for other software. Linux is more than a kernel or an operating system. It is a symbol money does not rule everything. You don't pay for Linux. You don't have to watch ads when using it. In return, please be a little more friendly and tolerant to the people who build it. While Linux is built by professionals today, there is more heart and soul poured into it than in other operating systems.&lt;/p&gt;&lt;p&gt;&lt;a href="http://beza1e1.tuxen.de/my_linux_history.html"&gt;beza1e1.tuxen.de&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 17 Dec 2020 09:27:17 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2295157/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-12-17T09:27:17Z</dc:date>
    </item>
    <item>
      <title>Install packetbeat</title>
      <link>https://oksoft.antville.org/stories/2271454/</link>
      <description>&lt;p&gt;In order to install packetbeat, you may need to change the windows security setting.&lt;/p&gt;&lt;p&gt;C:\packetbeat&amp;gt; Set-ExecutionPolicy&lt;/p&gt;&lt;p&gt;Supply values for the following parameters:ExecutionPolicy: unrestricted&lt;/p&gt;&lt;p&gt;Now you can install packetbeat using...C:\packetbeat&amp;gt; .\install-service-packetbeat.ps1&lt;/p&gt;</description>
      <pubDate>Tue, 26 Mar 2019 06:01:45 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2271454/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-03-26T06:01:45Z</dc:date>
    </item>
    <item>
      <title>Libre office on centOS</title>
      <link>https://oksoft.antville.org/stories/2226059/</link>
      <description>&lt;p&gt;Here is how to install Libre office on centOS&lt;/p&gt;&lt;p&gt;64 bitwget &lt;a href="http://download.documentfoundation.org/libreoffice/stable/4.4.4/rpm/x86_64/LibreOffice_4.4.4_Linux_x86-64_rpm.tar.gz"&gt;download.documentfoundation.org&lt;/a&gt;&lt;/p&gt;&lt;p&gt;32 bitwget &lt;a href="http://download.documentfoundation.org/libreoffice/stable/4.4.4/rpm/x86/LibreOffice_4.4.4_Linux_x86_rpm.tar.gz"&gt;download.documentfoundation.org&lt;/a&gt;&lt;/p&gt;&lt;p&gt;tar xvf LibreOffice_4.4.4_Linux_x86_rpm.tar.gz&lt;/p&gt;&lt;p&gt;rpm -Uvh LibreOffice_4.4.4.3_Linux_x86_rpm/RPMS/*.rpm&lt;/p&gt;</description>
      <pubDate>Tue, 07 Jul 2015 07:02:21 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2226059/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2015-07-07T07:02:21Z</dc:date>
    </item>
    <item>
      <title>predictive typing</title>
      <link>https://oksoft.antville.org/stories/2225606/</link>
      <description>&lt;p&gt;You can try a software called typing booster on Fedora. It helps user while typing. User can avoid typing mistakes and also avoid typing long spellings. If you are on fedora or centOS use the following command:&lt;/p&gt;&lt;p&gt;yum install ibus-typing-booster -y&lt;/p&gt;&lt;p&gt;I hope this package is made available for debian as well.&lt;/p&gt;</description>
      <pubDate>Mon, 29 Jun 2015 09:59:03 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2225606/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2015-06-29T09:59:03Z</dc:date>
    </item>
    <item>
      <title>Creating a new repository</title>
      <link>https://oksoft.antville.org/stories/2186877/</link>
      <description>&lt;p&gt;Create a new repository on the command line&lt;/p&gt;&lt;p&gt;touch README.mdgit initgit add README.mdgit commit -m &amp;quot;first commit&amp;quot;git remote add origin &lt;a href="mailto:git@github.com"&gt;git@github.com&lt;/a&gt;:shantanuo/vivac.gitgit push -u origin master&lt;/p&gt;&lt;p&gt;Push an existing repository from the command line&lt;/p&gt;&lt;p&gt;git remote add origin &lt;a href="mailto:git@github.com"&gt;git@github.com&lt;/a&gt;:shantanuo/vivac.gitgit push -u origin master&lt;/p&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:24:45 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2186877/</guid>
      <dc:creator>shantanu oak</dc:creator>
      <dc:date>2014-01-23T15:24:45Z</dc:date>
    </item>
    <item>
      <title>More about git</title>
      <link>https://oksoft.antville.org/stories/2163851/</link>
      <description>&lt;h2&gt;getting started&lt;/h2&gt;&lt;p&gt;git initgit add index.htmlgit commit -m&amp;quot;my first commit&amp;quot;git diffgit clone public_html my_website&lt;/p&gt;&lt;h1&gt;git log&lt;/h1&gt;&lt;p&gt;git statusgit loggit show xxxgit diff xxx&lt;/p&gt;&lt;h2&gt;branching out&lt;/h2&gt;&lt;p&gt;git branchgi branch devgit show-branch --more=5git checkout devgit checkout HEAD index.htmlgit merge devgit diffgit reset --mixed HEADgit reset --hard ORIG_HEADgit branch -d dev&lt;/p&gt;&lt;h2&gt;add shortcuts&lt;/h2&gt;&lt;p&gt;git config --global alias.show-graph 'log --graph --abbrev-commit --pretty=online'&lt;/p&gt;&lt;h2&gt;plumbing commands&lt;/h2&gt;&lt;p&gt;git ls-files --stagegit ls-files --unmergedgit cat-file -p xxxgit reflog&lt;/p&gt;</description>
      <pubDate>Sun, 09 Jun 2013 13:48:34 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2163851/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2013-06-09T13:48:34Z</dc:date>
    </item>
    <item>
      <title>Git Alias</title>
      <link>https://oksoft.antville.org/stories/2158272/</link>
      <description>&lt;p&gt;Consider setting up a simple Git alias for common but complex Git command that you type frequently.&lt;/p&gt;&lt;p&gt;git config --global alias.show-graph 'log --graph --abbrev-commit --pretty=oneline'&lt;/p&gt;</description>
      <pubDate>Sun, 21 Apr 2013 06:16:54 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2158272/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2013-04-21T06:16:54Z</dc:date>
    </item>
    <item>
      <title>git alias</title>
      <link>https://oksoft.antville.org/stories/2156543/</link>
      <description>&lt;p&gt;Add the following to the .gitconfig file in your $HOME directory.&lt;/p&gt;&lt;p&gt;[alias]co = checkoutci = commitst = statusbr = branchhist = log --pretty=format:&amp;quot;%h %ad | %s%d [%an]&amp;quot; --graph --date=shorttype = cat-file -tdump = cat-file -p&lt;/p&gt;</description>
      <pubDate>Wed, 03 Apr 2013 05:46:07 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2156543/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2013-04-03T05:46:07Z</dc:date>
    </item>
    <item>
      <title>Mobile wikipedia search plug-in</title>
      <link>https://oksoft.antville.org/stories/2053706/</link>
      <description>&lt;p&gt;You must have used the wikipedia search plug-in for firefox. I have written a similar plug-in that will take you to mobile wikipedia page.&lt;/p&gt;&lt;p&gt;&lt;a href="http://mycroft.mozdev.org/search-engines.html?author=shantanu.oak"&gt;mycroft.mozdev.org&lt;/a&gt;&lt;/p&gt;&lt;p&gt;It is very fast, without images and looks good even on very small screens.&lt;/p&gt;</description>
      <pubDate>Wed, 30 Mar 2011 05:11:09 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2053706/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2011-03-30T05:11:09Z</dc:date>
    </item>
    <item>
      <title>concise wikipedia extension</title>
      <link>https://oksoft.antville.org/stories/2005947/</link>
      <description>&lt;p&gt;&lt;a href="https://addons.mozilla.org/en-us/firefox/addon/wikisearch-concise/"&gt;addons.mozilla.org&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The user will select any word from the current webpage and choose &amp;quot;wikipedia Concise&amp;quot; on the right click. The selection will be submitted to the website mobile.wikipedia.orgFor e.g. if I have selected the word &amp;quot;obama&amp;quot; and searched using &amp;quot;wikipedia description&amp;quot;, I will be directed to the site that will show me a few lines about Barack Obama.&lt;/p&gt;&lt;p&gt;The URL is menioned in the url tag and that looks something like this.mobile.wikipedia.org/transcode.php?go=obama&lt;/p&gt;&lt;p&gt;pretty easy, huh?&lt;/p&gt;</description>
      <pubDate>Sun, 04 Jul 2010 13:37:19 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2005947/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2010-07-04T13:37:19Z</dc:date>
    </item>
  </channel>
</rss>

