Cluster Nodejs Application
Nodejs application runs in a single thread. It takes advantage of utilizing only one Core. So if you are not running your application with in a cluster then you are waisting some resources. The...
The Power to Be Your Best
Nodejs application runs in a single thread. It takes advantage of utilizing only one Core. So if you are not running your application with in a cluster then you are waisting some resources. The...
Introduction I was looking for some tools for writing CLI. Then i found an awesome way of writing cli in Java Script and nodejs as npm module. And this is easy as it writing a simple...
Yeoman With yeoman your project boilerplate will be ready in minutes. It helps you to create starter project with tools and technologies you want, by asking some questions. For example using a yeoman generator you...
Description This is a visual web page builder, which you can use to create web pages by utilising a portfolio of React components, also you can compose view components, and then export as a React application. After...
Lattice is a cloud-native application platform that enables you to run your applications in containers using solutions like Docker. Lattice includes features like: Cluster scheduling HTTP load balancing Log aggregation Health management Lattice does...
Default Methods or Extension Methods for Interfaces Java 8 allows us to add non-abstract method implementation to interfaces by utilizing the default keyword. Here is our first example:
1 2 3 4 5 6 7 |
interface Calculator { double calculateSqrt(int a); default double sqrt(int a) { return Math.sqrt(a); } } |
Besides abstract calculateSqrt method, there is one...
As JavaScript might be the world’s most misunderstood language, but it is one of most popular and used one. Then you need to deal this in more nice way, better structure of code, unit and...
Introduction Productivity is very important while development, that can be achieved by choosing efficient way of working. When i started working with OSX few years back, i did not have any concrete bash profile,...
Introduction If you’re a developer geek like I am, you’ll want to check this out. This is awesome tool for creating resume with json file, cv can be exported as pdf or html. You...
Keep in Mind before starting preparation The certification exam is not easy, preparation is time consuming even you experienced java developer. You will feel that you really improved your programming and analytical skills. You...
As in Java 5.0, Java lets you to restrict a variable to having one of only a few pre-defined values – in other words one value from an enumerated list. The items in enumerated...