This week of Things I learned, I would like to write about some git commands. These commands are parts of my daily usage. I would end up googling them every time they needed and go through a lot a links until land on the correct result. To save time I have gathered them at one […]
When registering JavaScript Events we need to provide the handler. That handler is called when ever a specified event is clicked. function clickHandler() { alert(‘Window is clicked’) } window.addEventListener(‘click’, clickHandler()) The problem with above code is that, we will see the alert as soon as windows loads. The expected result is show alert whenever we […]

Angular directive makes more sense when used in an example. The interesting example will make things fun to understand and follow. In our scenario we will handle the images that are failed to load. If you are more of a video person that I have also attached the video the end of the article Watch […]

In this article of Ionic design challenge we are looking at this expense app dribbble shot. We are going to convert the lower part of the design (as marked in the screenshot below) using ionic built in components. If you are more of a video person that I have also attached the video the end […]
FUD of Blogging
FUD is very nice acronym for Fear, Uncertainty, Doubt. I just recently discovered it on the article where some Hybrid App negativity was cleared. What FUD has to do with blogging. It is thoughts that procrastinate you from writing your next amazing piece, or pressing the Publish Button. At some point of blogging we all […]