<?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>Mon, 20 Jul 2026 00:32:40 GMT</pubDate>
    <dc:date>2026-07-20T00:32:40Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Activate IAM Access</title>
      <link>https://oksoft.antville.org/stories/2306396/</link>
      <description>&lt;p&gt;To activate the Activate IAM Access setting, you must log in to your AWS account using the root user credentials, and then select the setting in the My Account page.&lt;/p&gt;&lt;p&gt;&lt;a href="https://console.aws.amazon.com/billing/home#/account"&gt;console.aws.amazon.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;select the check box that says &amp;quot;Activate IAM Access&amp;quot; in the section &amp;quot;IAM User and Role Access to Billing Information&amp;quot;.&lt;/p&gt;</description>
      <pubDate>Tue, 12 Jul 2022 05:52:13 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2306396/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2022-07-12T05:52:13Z</dc:date>
    </item>
    <item>
      <title>Create config file for AWS command line tool</title>
      <link>https://oksoft.antville.org/stories/2286684/</link>
      <description>&lt;p&gt;While creating amazon config file in a shell script, use cat with heredoc like this..&lt;/p&gt;&lt;p&gt;cat &amp;gt; myconfigfile.txt &amp;lt;&amp;lt; &amp;quot;heredoc&amp;quot;[default]aws_access_key_id=XXXaws_secret_access_key=XXXregion=us-east-1heredoc&lt;/p&gt;&lt;p&gt;export AWS_CONFIG_FILE=./myconfigfile.txt&lt;/p&gt;</description>
      <pubDate>Thu, 20 Feb 2020 06:00:11 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2286684/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-20T06:00:11Z</dc:date>
    </item>
    <item>
      <title>access AWS API gateway using python</title>
      <link>https://oksoft.antville.org/stories/2286143/</link>
      <description>&lt;p&gt;Amazon API gateway allows us to host serverless API's those can talk to cloud or on-premises databases. Here is 5 lines of python code to use the API&lt;/p&gt;&lt;p&gt;from urllib.request import Request, urlopen&lt;/p&gt;&lt;p&gt;url='&lt;a href="https://xxx.execute-api.ap-south-1.amazonaws.com/stag"&gt;xxx.execute-api.ap-south-1.amazonaws.com&lt;/a&gt;'&lt;/p&gt;&lt;p&gt;q = Request(url)q.add_header('uname', '472202986990')data = urlopen(q).read().decode('UTF-8')&lt;/p&gt;</description>
      <pubDate>Sun, 16 Feb 2020 09:41:04 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2286143/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-16T09:41:04Z</dc:date>
    </item>
    <item>
      <title>Using boto</title>
      <link>https://oksoft.antville.org/stories/2286057/</link>
      <description>&lt;p&gt;In the bad old days, the glacier class used to have different layers.&lt;/p&gt;&lt;p&gt;import boto.glacier.layer2l2 = boto.glacier.layer2.Layer2(aws_access_key_id='xxx', aws_secret_access_key='xxx')&lt;/p&gt;&lt;p&gt;Now the client is all you need!&lt;/p&gt;&lt;p&gt;import boto3gc = boto3.client(&amp;quot;glacier&amp;quot;,aws_access_key_id=&amp;quot;xxx&amp;quot;, aws_secret_access_key=&amp;quot;xxx&amp;quot;,)&lt;/p&gt;</description>
      <pubDate>Sat, 15 Feb 2020 10:28:05 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2286057/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-15T10:28:05Z</dc:date>
    </item>
    <item>
      <title>Steps to be used for generating AWS API gateway</title>
      <link>https://oksoft.antville.org/stories/2285834/</link>
      <description>&lt;p&gt;a) Method Execution - Get Method Request - URL Query String Parameters - add a variable: cmnumber&lt;/p&gt;&lt;p&gt;b) Method Execution - Get Integration Request - Mapping Templates - Content-Type - application/json - Mapping template&lt;/p&gt;&lt;p&gt;{&amp;quot;mnumber&amp;quot;: &amp;quot;$input.params('cmnumber')&amp;quot;}&lt;/p&gt;&lt;p&gt;&amp;quot;requestTemplates&amp;quot;: {     &amp;quot;application/json&amp;quot;: {        &amp;quot;querystring&amp;quot;: &amp;quot;$input.params().querystring&amp;quot;      } }&lt;/p&gt;</description>
      <pubDate>Thu, 13 Feb 2020 13:30:33 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285834/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-13T13:30:33Z</dc:date>
    </item>
    <item>
      <title>docker on ARM</title>
      <link>https://oksoft.antville.org/stories/2282160/</link>
      <description>&lt;p&gt;Here are 5 commands to run docker on ARM processors:&lt;/p&gt;&lt;p&gt;sudo apt-get updatesudo apt-get upgradecurl -fsSL get.docker.com -o get-docker.sh &amp;amp;&amp;amp; sh get-docker.shsudo usermod -aG docker $USERsudo docker run --rm -it -p 80:80 jasonrandrews/php-example&lt;/p&gt;</description>
      <pubDate>Thu, 26 Dec 2019 05:41:06 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2282160/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-12-26T05:41:06Z</dc:date>
    </item>
    <item>
      <title>Weekly Email Notification</title>
      <link>https://oksoft.antville.org/stories/2278838/</link>
      <description>&lt;p&gt;enable Weekly Email Notification from the Trusted Advisor.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Open the AWS Management Console.&lt;/li&gt;&lt;li&gt;Go to the Trusted Advisor service.&lt;/li&gt;&lt;li&gt;Select Preferences from the sub-navigation.&lt;/li&gt;&lt;li&gt;Enable weekly email notifications.&lt;/li&gt;&lt;/ol&gt;</description>
      <pubDate>Wed, 16 Oct 2019 13:14:58 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2278838/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-10-16T13:14:58Z</dc:date>
    </item>
    <item>
      <title>Use SNS topic to send marbot alarms by email</title>
      <link>https://oksoft.antville.org/stories/2277429/</link>
      <description>&lt;ol&gt;&lt;li&gt;&lt;p&gt;Open the AWS SNS Management Console&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Create and select a SNS topic&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Click on Actions &amp;gt; Subscribe to Topic&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Choose HTTPS as the protocol and set the endpint to:&lt;a href="https://api.marbot.io/v1/sns/ea5e"&gt;api.marbot.io&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Configure your CloudWatch Alarms to send notifications to the SNS topic.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;</description>
      <pubDate>Tue, 10 Sep 2019 13:06:18 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2277429/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-09-10T13:06:18Z</dc:date>
    </item>
    <item>
      <title>Managing EBS volumes</title>
      <link>https://oksoft.antville.org/stories/2277428/</link>
      <description>&lt;p&gt;lsblk prints all block devices in a tree-like format.&lt;/p&gt;&lt;p&gt;lsblkNAME    MAJ:MIN RM SIZE RO TYPE MOUNTPOINTxvda    202:0    0   8G  0 disk└─xvda1 202:1    0   8G  0 part /xvdf    202:80   0  90G  0 disk&lt;/p&gt;&lt;p&gt;If file command on the disk identifier &amp;quot;xvdf&amp;quot; shows simply &amp;quot;data&amp;quot;, then there is no file system on the device and you need to create one.&lt;/p&gt;&lt;p&gt;file -s /dev/xvdf/dev/xvdf: data&lt;/p&gt;</description>
      <pubDate>Tue, 10 Sep 2019 13:03:59 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2277428/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-09-10T13:03:59Z</dc:date>
    </item>
    <item>
      <title>Types in AWS CNF</title>
      <link>https://oksoft.antville.org/stories/2276174/</link>
      <description>&lt;p&gt;List of important Types in Amazon Cloud Formation tool:&lt;/p&gt;&lt;p&gt;IAM (User, Group, Policy, AccessKey, Role)Athena (NamedQuery)Route53 (RecordSetGroup)EC2 (SecurityGroup::Id, KeyPair::KeyName, SpotFleet)Lambda (Function, Permission)Events (Rule)ApiGateway (RestApi, Method, Deployment)Logs (LogGroup)&lt;/p&gt;</description>
      <pubDate>Mon, 05 Aug 2019 05:36:46 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2276174/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-08-05T05:36:46Z</dc:date>
    </item>
  </channel>
</rss>

