<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Dariush Azimi</title>
    <description>All things Cloud, AWS, Google and more!</description>
    <link>http://dariushazimi.github.io</link>
    <atom:link href="http://dariushazimi.github.io/feed.xml" rel="self" type="application/rss+xml" />
    
      <item>
        <title>Deep learning in Python</title>
        <description>
          
          Neural network and deep learning Neural networks account for interaction between input layers really well. Deep learning uses especially powerful neural networks with can handle large number of interactions between the input layers. Forward Propagation Neural networks use models to make predictions, which is called the forward propagation algorithm. Here...
        </description>
        <pubDate>Wed, 24 Mar 2021 00:00:00 -0700</pubDate>
        <link>http://dariushazimi.github.io/2021-03-24-Deep-Learning-in-Python/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2021-03-24-Deep-Learning-in-Python/</guid>
      </item>
    
      <item>
        <title>Data cleansing steps</title>
        <description>
          
          Data cleansing steps Remove unnecessary columns Pandas offers two functions for handeling missing data: ` isnull() and notnull`. These return a Boolean value to show if the passed value is missing data. You can either replace them or drop them. In pandas missing values show up as nan values. (not...
        </description>
        <pubDate>Mon, 23 Mar 2020 00:00:00 -0700</pubDate>
        <link>http://dariushazimi.github.io/2020-03-23-Data-Cleansing-Steps/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2020-03-23-Data-Cleansing-Steps/</guid>
      </item>
    
      <item>
        <title>Supervised vs Unsupervised Machine Learning</title>
        <description>
          
          Supervised vs Unsupervised Machine Learning Supervised Machine Learning In supervised machine learning we feed the model a dataset that we have the asnwers to. In othe words, we have labels that are associated with the training dataset which are used to correct the algorithm. The clean dataset will be fed...
        </description>
        <pubDate>Wed, 20 Mar 2019 00:00:00 -0700</pubDate>
        <link>http://dariushazimi.github.io/2019-03-20-Supervised-vs-Unsupervised-Machine-Learning/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-03-20-Supervised-vs-Unsupervised-Machine-Learning/</guid>
      </item>
    
      <item>
        <title>How to get Canonical ID for your IAM user</title>
        <description>
          Get canonical id for your user id - 
          You can also get your Canonical ID for your IAM user from the CLI command:

List all the buckets and your iam Canonical ID:

aws s3api list-buckets  


And if you just want to get your Canonical ID:

aws s3api list-buckets | grep ID


        </description>
        <pubDate>Sun, 24 Feb 2019 00:00:00 -0800</pubDate>
        <link>http://dariushazimi.github.io/2019-02-24-How-to-get-Canonical-ID/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-02-24-How-to-get-Canonical-ID/</guid>
      </item>
    
      <item>
        <title>How to use filter and Lambda function in python</title>
        <description>
          How to filter elements from a list using - 
          Here is an exmaple to filter the list for the product with prices larger than $10.

items = [
    (&quot;product1&quot;, 10),
    (&quot;product2&quot;, 3),
    (&quot;product3&quot;, 210),
]

filtered = list(filter(lambda item: item[1] &amp;gt;= 10, items))


print(filtered)


and the output is:

[('product1', 10), ('product3', 210)]


        </description>
        <pubDate>Tue, 19 Feb 2019 00:00:00 -0800</pubDate>
        <link>http://dariushazimi.github.io/2019-02-19-How-to-filter-list-in-python/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-02-19-How-to-filter-list-in-python/</guid>
      </item>
    
      <item>
        <title>How to use Map and Lambda function in python</title>
        <description>
          How to get the elements from a list using Map - 
          Here is an exmaple to get the prices from the list. Lat say we have the following list: items = [ (&quot;product1&quot;, 10), (&quot;product2&quot;, 3), (&quot;product3&quot;, 210), ] We can use the map function as you can see below to get a list of prices. prices = list(map(lambda item: item[1],...
        </description>
        <pubDate>Sat, 16 Feb 2019 00:00:00 -0800</pubDate>
        <link>http://dariushazimi.github.io/2019-02-16-How-to-select-items-from-list-in-python/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-02-16-How-to-select-items-from-list-in-python/</guid>
      </item>
    
      <item>
        <title>Why Am I Getting Insufficient Data In Cloudwatch</title>
        <description>
          
          Why am I getting insufficient_data alarms in Cloudwatch? In some cases cloudwatch will show INSUFFICIENT_DATA message. The is the result of the cloudwatch log not being active for the measured time period or no logs being received. For example, if the log is looking at a 1 minute period and...
        </description>
        <pubDate>Tue, 15 Jan 2019 00:00:00 -0800</pubDate>
        <link>http://dariushazimi.github.io/2019-01-15-Why-am-i-getting-insufficient-data-in-cloudwatch/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-01-15-Why-am-i-getting-insufficient-data-in-cloudwatch/</guid>
      </item>
    
      <item>
        <title>What Is Cross Region Replication</title>
        <description>
          
          What you need to know about Cross Region Replication (CRR)? When you create an s3 bucket and turn on replication, it replicates from one region to another, by default this is done using SSL. So there is no need to turn this on or set a policy. You can only...
        </description>
        <pubDate>Fri, 11 Jan 2019 00:00:00 -0800</pubDate>
        <link>http://dariushazimi.github.io/2019-01-11-What-is-cross-region-replication/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-01-11-What-is-cross-region-replication/</guid>
      </item>
    
      <item>
        <title>How To Upload Objects Using Awscli To S3 Bucket With Signed Sse</title>
        <description>
          
          How to upload objects using AWS CLI to S3 bucket with assigned SSE? Keep in mind Server-side encryption is about protecting data at rest. In short here is the command to upload objects using AWS CLI to S3 bucket with assigned SSE. aws s3 cp &amp;lt;local path&amp;gt; &amp;lt;s3 path&amp;gt; --sse...
        </description>
        <pubDate>Thu, 10 Jan 2019 00:00:00 -0800</pubDate>
        <link>http://dariushazimi.github.io/2019-01-10-How-to-upload-objects-using-awscli-to-s3-bucket-with-signed-SSE/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2019-01-10-How-to-upload-objects-using-awscli-to-s3-bucket-with-signed-SSE/</guid>
      </item>
    
      <item>
        <title>How To Create Distribution File For Python Scripts</title>
        <description>
          
          How to create distribution files for python scripts? Install setuptools Here I will show you how to create distribution files for your python scripts so that so that other users can install the script on their machines, just like when we install python modules using pip3. We will do that...
        </description>
        <pubDate>Fri, 02 Nov 2018 00:00:00 -0700</pubDate>
        <link>http://dariushazimi.github.io/2018-11-02-how-to-create-distribution-file-for-python-scripts/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2018-11-02-how-to-create-distribution-file-for-python-scripts/</guid>
      </item>
    
      <item>
        <title>How To Create Distribution File For Python Script</title>
        <description>
          
          How to create a distribution file for your python scripts? Install setuptools Here is the process to create a distribution file for your python scripts so that users can install the script on their machines. Just like the python modules that you install using pip3. We will do that using...
        </description>
        <pubDate>Fri, 02 Nov 2018 00:00:00 -0700</pubDate>
        <link>http://dariushazimi.github.io/2018-11-02-how-to-create-distribution-file-for-python-script/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2018-11-02-how-to-create-distribution-file-for-python-script/</guid>
      </item>
    
      <item>
        <title>Install Chocolatey On Windows10</title>
        <description>
          
          Install awscli and python3 with chocolatey on Windows 10 Start powershell and run as admin Run the following on powershell command prompt: `Get-ExecutionPolicy` If it returns Restricted do the following: `Set-ExecutionPolicy Bypass -Scope Process` Now run the following command: `Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))` Restart powershell and...
        </description>
        <pubDate>Mon, 01 Oct 2018 00:00:00 -0700</pubDate>
        <link>http://dariushazimi.github.io/2018-10-01-Install-Chocolatey-on-Windows10/</link>
        <guid isPermaLink="true">http://dariushazimi.github.io/2018-10-01-Install-Chocolatey-on-Windows10/</guid>
      </item>
    
  </channel>
</rss>
