Health Topic Library

PHP, JS, CSS, Python, and Machine Learning Technology

Browse trusted health articles by topic. Use the filters and A-Z index to quickly find related medical content.

526 articlesUpdated medical education library

A-Z article index

H

Latest articles

RX
Health Topic Library

Bus-boy

Why in busboy I am making use of stream for uploading files An example of file upload with busboy and express // accept POST request on...

Read article
RX
Health Topic Library

Interacting with a Buffer

Prior to the introduction of TypedArray, the JavaScript language had no mechanism for reading or manipulating streams of binary data. The Buffer class was introduced as...

Read article
RX
Health Topic Library

Hash Algorithms

Hash algorithms are one way functions. They turn any amount of data into a fixed-length “fingerprint” that cannot be reversed. They also have the property that...

Read article
RX
Health Topic Library

REST architectural style describes six constraints.

These constraints, applied to the architecture, were originally communicated by Roy Fielding in his doctoral dissertation (see https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm) and defines the basis of RESTful-style. The six constraints...

Read article
RX
Health Topic Library

How do Node.js works?

Node is completely event-driven. Basically the server consists of one thread processing one event after another. A new request coming in is one kind of event....

Read article
RX
Health Topic Library

How to Implement Sharding

Sharding is a concept in MongoDB, which splits large data sets into small data sets across multiple MongoDB instances. Sometimes the data within MongoDB will be...

Read article
RX
Health Topic Library

Index in MongoDB

An index in MongoDB is a special data structure that holds the data of few fields of documents on which the index is created. Indexes improve...

Read article
RX
Health Topic Library

Aggregation in MongoDB

Aggregation in MongoDB is nothing but an operation used to process the data that returns the computed results. Aggregation basically groups the data from multiple documents...

Read article
RX
Health Topic Library

Collection

The Collection is group of Documents in MongoDB. In RDBMS, this can be considered as a table which will have list records (documents in MongoDB). What...

Read article
RX
Health Topic Library

How events work

When a user clicks a button or presses a key, an event is fired. These are called a click event or a keypress event, respectively. An...

Read article