Posts

Image
                         What is the AWS CLI? The AWS Command Line Interface (CLI) is for managing your AWS services from a terminal session on your own client, allowing you to control and configure multiple AWS services and implement a level of automation. If you’ve been using AWS for some time and feel comfortable clicking your way through all the services, you may have noticed that there’s more to AWS than the default eye-catching browser console. Using the AWS CLI can help you to unlock further potential when managing your AWS environment. The  AWS CLI is a unified tool to manage your AWS services from a terminal session on your own client. With just one tool to download and configure, you can control multiple AWS services from the command line and automate them through scripts. In this blog, I will show you how to use the AWS CLI and how to install it on your Windows, Linux, Mac, or Unix Operating Syst...

Django Template Tags

Image
               Django Template Tags Tags Django Web Framework ships with dozens of tags used to implement arbitrary logics right in the template.  Tags look like this:  {% tag %} . Tags are more complex than variables: Some create text in the output, some control flow by performing loops or logic, and some load external information into the template to be used by later variables. Tags provide arbitrary logic in the rendering process.  For example, a tag can output content, serve as a control structure e.g. an “if” statement or a “for” loop, grab content from a database, or even enable access to other template tags. Syntax {% tag_name %} Example Tags are surrounded by {% and %} like this: {% csrf_token %} Most tags accept arguments, for example : {% cycle 'odd' 'even' %} Commonly used Tags in Django Templates 1.      Comment Template ignores everything between {% comment %} and {% e...