TO THE NEW Blog PAGES

DevOpsTechnology

Creating And Importing IAM User to Opsworks

Opsworks is a wonderful SaaS tool provided by AWS which off-loads human driven tasks like managing own chef server, installing agents on each server, creating ssh user(s) even on run-time for the servers and various other benefits. In this blog an IAM User will be created without any CLI credentials, it will be registered with […]

Big DataDigital AnalyticsIndustry Buzz

Your Mobile Phone’s Power to Make or Break Your Favorite Brand’s Future

Mobile phone penetration worldwide is at 62.9%, which is more than half of the world’s population (Statista, n.d.). With the rise of technological advancements, we cannot deny the fact that our lives have been transformed from a television-driven generation to multiple medium owners such as the desktop, laptop, tablet, and the phone. In the 2016 […]

DevOpsTechnology

8 Reasons to Move to Docker Swarm

What is Docker Swarm: Docker Swarm is the orchestration tool from the makers of Docker. In the words of Docker website itself, “Docker Swarm provides native clustering capabilities to turn a group of Docker engines into a single, virtual Docker Engine.” In case you are unfamiliar with what Docker is, you can read my previous […]

DevOpsTechnology

Empower Vagrant with Chef

Vagrant is a development friendly tool to make easy creation of development environments. In its own words it “Creates and configures lightweight, reproducible, and portable development environments”. Today we are going to learn how we can use chef-zero to provision guest OS for the development environment. We are not going to explore basic of Chef […]

AWSDevOpsTechnology

Elasticsearch: Making EC2-Discovery Work In AWS Mumbai Region

With the recently launched AWS Mumbai region, many of us might need to migrate our infrastructure there. In one such scenario, we have to setup Elasticsearch cluster on AWS EC2 instances and test it in Mumbai region.    While migrating Elasticsearch cluster from AWS Singapore region to Aws Mumbai region, we faced few challenges, one […]

AWSDevOpsTechnology

Deploy Code using AWS CodeDeploy and GitHub

The much talked about AWS CodeDeploy is being used as a daily deployment tool. According to AWS “AWS CodeDeploy coordinates application deployments to Amazon EC2 instances, on-premises instances, or both. (On-premises instances are physical devices that are not Amazon EC2 instances.)” On-premise support came in mid-2015. AWS CodeDeploy has been the choice of many since […]

Experience DesignFront End Development

Reduce gap between mobile designs and development using wire-frames and interaction notes

Once a product idea or a mobile app design project kicks-off, a UX designer plays a key role in envisioning the idea, and giving it a shape using multiple UX methods, tools and documents. Building a great design cries for a well thought digital product and defining ways in which a system interacts with users […]

Front End Development

Mastering CSS Specificity

CSS Specificity is one of the most confusing concept in Cascading Style Sheets and that’s the main reason, many Front End Developers avoid this for as long as possible. Specificity is a weight that is applied to a given CSS declaration and is determined by the number of each selector type in the matching selector. Basically, […]

AWSDevOpsTechnology

Attach IAM Role to an AWS Elastic Container Service Task

If you are hosting some micro websites on the AWS ECS, where every task is a separate application, and each task has running multiple containers on a Cluster. If we have a scenario where we want each of our application should upload its data to a separate AWS S3 bucket, we create a single role giving […]

AWSDevOpsTechnology

Automate Selenium testing with Jenkins

Selenium is a tool widely used for automating testing of web applications. One step ahead, integrating the selenium with Jenkins takes it to the next level. In this blog, we would be configuring Jenkins to run selenium test cases on an ubuntu environment. Scenario: Configure Jenkins to perform Selenium test cases with one click. I […]

AngularJSFront End DevelopmentTechnology

Angular 2 Component styling

Styling for large Angular application is a challenging task as most of the times styles easily gets mixed and confusing. Major issue that is encountered when we try to structure our styles and give proper naming for individual styles. To resolve the issue many patterns were introduced to enhance style organization and most of these […]

AngularJSFront End DevelopmentTechnology

Angular 2 Dependency Injection

In this blog, we will go through the new dependency injection system of Angular 2. As we know DI is the heart of AngularJS. In Angular 1 we can inject dependency at multiple places in different ways such as: in the directive definition by name   eg. [js]app.directive(‘questionTemplate’, [‘$http’, ‘Flash’, function($http, Flash) {}[/js] in the controller function […]

Services