Spoiler alert: we cannot compare these two as they are different in nature, but, I try to go through some points where to need to consider when choosing a front end technology.
[Read More]
An awesome SQL operator
I was working on a problem and I was desperate to do a clean job and not create a mess that no one can maintain it, and accidentally I read an article about SQL Apply operator.
[Read More]
How to show or hide content without any JS library or code
Mentioning this is trivial as no one seems to notice this while using default JQuery show and hide methods to show or hide an element on a page. As you might have noticed this before when you use hide(), the element gets a display:none; style. The problem is when you use show() to show the element again and here is when you seedisplay:block; is added to element styles.
[Read More]
ng-repeat and groupBy filter
TL/DR,
If you are using angular-filter already don’t read this.
Recently I was working on a task for creating a responsive UI which involved changing the html select with a button. Then with a click or tap on the button there should be a list shown like a drop down. Well I though ok let’s do that and quickly started using bootstrap dropdown.
[Read More]