Blog
It's a Wonderful Life
In Spring, beans which have been declared as scope="prototype" will not be destroyed when the whole application has destroyed, or the main method has reached to its end.
Quick sort picks an element as pivot and partitions the given array around the picked pivot. There are many different versions of quickSort that pick pivot in different ways.
Introduced in Java 8, the Stream API is used to process collections of objects. A stream is a sequence of objects that supports various methods which can be pipelined to produce the desired result....
The main goal of Inversion of control and Dependency Injection is to remove dependencies of an application. This makes the system more decoupled and maintainable.
So today I found out a weird behaviour of the input tag under mobile devices, well, Android devices specifically.
React 16, released in September 2017, introduced Portals.
During the lifetime of a component, there’s a series of events that gets called, and to each event you can hook and provide custom functionality.
maxlength attribute cannot be used on input tags which type attribute is number, it will not take any effect. There are 2 work arounds to achieve the same functionality though.
As you try to understand the Node.js event loop, one important part of it is process.nextTick().