
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Pankaj Kumar Bind has Published 35 Articles

Pankaj Kumar Bind
1K+ Views
In JavaScript, an ArrayBuffer is a kind of binary structure that enables the manipulation of unprocessed binary. While there is a representation of data with the use of strings such as JSON, it is sometimes useful to indicate that JSON could be transformed into an ArrayBuffer especially when interacting with ... Read More

Pankaj Kumar Bind
1K+ Views
When building web applications, you may notice that clicking on buttons often leaves an outline or "focus ring" around them. This can be helpful for accessibility, but sometimes it's not desirable for specific designs. In this article, we’ll explore several ways to remove the focus ring from buttons when they ... Read More

Pankaj Kumar Bind
1K+ Views
JavaScript does not have a specific attribute protection level like the one that exists in some other languages, but we can come close using a few techniques. Protected properties are those that are accessible only to certain methods of an object and are not exposed to outside access. This idea ... Read More

Pankaj Kumar Bind
2K+ Views
It is often necessary to change JSON data into Excel sheet, especially when exporting and reporting is concerned, in various web applications. Data is presented and analyzed with the help of the widely spread Excel files, and the transformation of the JSON data to excel enables the users to do ... Read More

Pankaj Kumar Bind
1K+ Views
Centering the middle item in a layout while ensuring it doesn’t move if other items are removed is a common design challenge, this article explores ways to center the middle item using CSS techniques that maintain its position even if adjacent elements are absent. Using Flexbox with Absolute Centering ... Read More

Pankaj Kumar Bind
1K+ Views
Working with web applications often requires parsing some HTML tables to extract the content in the appropriate format, most often in JSON format which is better for storage, transfer, or API communication. One of the most popular formats used for data exchange is JSON, mainly due to its lightweight nature ... Read More

Pankaj Kumar Bind
1K+ Views
Flexbox is a powerful layout tool that allows us to align items within a container dynamically. However, sometimes you may want a flex item to take up only as much width as its content, rather than stretching to fill the available space within the container. In this article, we’ll go ... Read More

Pankaj Kumar Bind
1K+ Views
When creating web pages, a common design practice is to center a background image in a div. There are several options available, and each one is useful in its area. A background image will be centered inside a div box in an article regardless of the screen size or the ... Read More

Pankaj Kumar Bind
2K+ Views
In standard CSS positioning, relatively positioned elements occupy space within the normal document flow even after being offset by top, left, right, or bottom properties. This can create a gap in the layout where the element would have naturally sat, disrupting the alignment or layout of other elements around it. ... Read More

Pankaj Kumar Bind
1K+ Views
In CSS, there are times when you want to stretch a child div out over its parent div, thanks to some specific characteristics of the given content. In CSS, this is usually counterproductive since a div that is larger than its parent is going to get clipped, but certain properties ... Read More