In one of the previous article Binding The Host Element With @HostBinding, I showed you how to bind property to the host element using @HostBinding decorator. We enabled the highlight directive or attribute on the host element by binding the color to its style.background property. In this article I will use the same Typescript class and show you how you ...
Read More »HTML5 Zoom Image Example
Zooming images is one useful technique every front end web developer should learn. You might need the knowledge in one of your projects. Zooming images can be tricky but after reading this article you would get the hang of it. In this example we would learn how to zoom images in ...
Read More »Setting Up AWS Authentication Before Deploying Docker Apps
Amazon Web Services (AWS) is one of the most ubiquitous cloud computing providers available today, delivering a seemingly endless suite of tools for cloud computing and development. From servers to storage and databases to deployment, if you need it, AWS probably has it. While it is used by companies like Netflix, Slack, and Pinterest to run their services, store data, ...
Read More »Top 6 Performance Challenges in Managing Microservices in a Hybrid Cloud
Want to know How to Build (and Scale) with Microservices? Download the Whitepaper from AppDynamics: Grab it now! As we review the history of enterprise applications we have seen several trends emerge over the years. In the mid-late 90s we built applications to be large and monolithic because they were destined to be published to very large and vertically scalable ...
Read More »Packer, Ansible and Docker Part 3: Multiple Roles
Previously we modified our setup to use a role from ansible galaxy to install and configure redis. One key thing lacking here is that one rarely needs to just use a role from ansible galaxy by itself so next up we’ll modify our playbook to define the server as a role that uses the redis role. Creating Our Role First up ...
Read More »Build Docker Images with Packer and Ansible
Recently someone asked me where a good place is to get started learning tools like docker, packer and ansible. I did some quick googling and didn’t find what I thought were really good, in-depth tutorials so I decided to write one myself! Getting Started This tutorial assumes you are working with OSX although you should be able to accomplish the ...
Read More »6 Video Courses to Prepare You for the New Web Era
The Internet world is changing rapidly. And as programmers, we need to stay up to date with the most recent developments. Some of the most important trends that you need to be on top of are the proliferation of frameworks like AngularJS and NodeJS, templating libraries like VueJS, and rendering libraries like React. These are all technologies that are going ...
Read More »Packer, Ansible and Docker Part 2: Using Ansible Galaxy
Previously we setup packer, docker and ansible to build a very simple docker image that simply placed a file under /root with some content, a very simple start. Today we’ll go further and explore using ansible roles and making some pieces a bit more dynamic. A Real World Example In this tutorial, we’ll build a docker image that has Redis installed. ...
Read More »HTML5 Range Slider Example
HTML5 has added so many new features to the HTML specification. With this newly added features we do not need to write complex or long JavaScript. One of the newly added element is the HTML <input> tag of type range. In this example we are going to learn how to work with this new element. ...
Read More »