0%

ACM Problems

Here are some of the problems I encountered in ACM.

Read more »

Event Loop

The JS monitor process determines the order in which different event are executed. This is the Event Loop

Read more »

Emoji

Emoji is a visual symbol used in wireless communication in Japan. Image refers to pictures, while text refers to characters, which can be used to represent a variety of expression, such as smiley faces representing laughter and cakes representing food.

Read more »

Docsify

Docsify generates your documentation website on the fly. Unlike GitBook, it does not generate static html files. Instead, it smartly loads and parses your Markdown files and displays them as a website. To start using it, all you need to do is create an index.html and deploy it on GitHub Pages.

Read more »

Event Flow in HTML

An event is a specific moment of interaction that occurs in a document or brower window and act as a bridge between JavaScript and DOM. Event Flow describes the order in which events are received from the page.

Read more »

The JavaScript ‘new’ keyword

In JavaScript, the ‘new’ keyword is used to create an instance object of a class (mock class). When an object is instantiated, it inherits the properties and methods of the class.

Read more »

JavaScript Question

Some interview questions and answers.

Read more »

‘xlrd’ and ‘xlwt’ in Python

xlrd‘ and ‘xlwt‘ are two Python tripartite library for working with Excel files.

Read more »