Sitemap
A list of all the posts and pages found on the site. For you robots out there is an XML version available for digesting as well.
Pages
Posts
React Native - Scale Android TV app for all TV resolutions
When i started working on a react-native project for android TV, i faced a very common scaling issue, how to design my application that fit multiple screen s...
Angular - Convert any Html element to Image using canvas
Sometimes you need to convert your entire div or web page to an image. So, I am going to convert a div or HTML to image with using angular module html2canvas
Angular 7 - Observables Tutorial for Components Communication
The best way to communicate between angular components is to use an Observables. I won’t go too much into the details about how observables work here since i...
NodeJs - Send Push Notifications to devices using firebase
You can send push notifications to any android devices using Firebase. I will explain you how to get the key from the firebase project and write a simple nod...
Common Misconception of NodeJs Event Loop
Node.js is an event-driven programming environment. This means that everything that happens in Node is the reaction to an event. A transaction passing throu...
Javascript - Map(), Filter() and Reduce() Simplified
If you’re starting in JavaScript, maybe you already heard of .map(), .reduce(), and .filter(). You may confused what the use of it and how does it work. Once...