Tables are great for displaying structured data. They might have been used for odd tasks as positioning images or even making websites grids but these days HTML tables are used mostly for its original purpose. One of the things we can do if we want our records displayed in this format more fun to play […]
Easy JavaScript array de-duplication
Getting rid of duplicate values in a list/array is quite a common software development task. I remember in the past when I first faced this problem it was not very straight forward to do it in vanilla JS. You would think that such a common operation would be handled with out of the box method […]
Tilting images with phone’s gyroscope the javascript way
Have you ever seen website UI reacting to device’s orientation? If not then maybe it is time to browse a little, there are some really cool effects that you can achieve by triggering visual changes with device motion. Let’s dive into a case of making images tilt while we angle our phone. Detecting mobile device […]