Technology

Docker for Dummies

What are Docker Containers? Docker containers provide a consistent environment throughout the whole Software Development Life Cycle SDLC. Docker is a tool designed to create, deploy and run applications by using containers. It allows a developer package an application with all the libraries and dependencies it needs. It ensures your application work seamlessly in any… Continue reading Docker for Dummies

Food

Authentic Hyderabadi Vegetable Biryani

Prep Time: 2hrs Recipe Servers : 4 Hyderabad (The city of Nizam) for centuries has been a heritage spot for many things - Forts, Museums, Education, Hospitals, last but not the least - Food. The Hyderabadi Cuisine has established a very unique Landmark in the world of Culinary Art. This cuisine is largely evolved from… Continue reading Authentic Hyderabadi Vegetable Biryani

Technology

JAVA 8 – Static and Default Methods in Interface

Interface world before JAVA 8 All Java developers learnt this sentence in early days of their practice “Java interface can only contain methods which are declared as public and abstract in nature.” This statement was absolute true before Java 8, which made some significant changes the way interface can be used in Java framework. Introduction… Continue reading JAVA 8 – Static and Default Methods in Interface

Technology

Just-In-Time (JIT) Compiler

1. Overview  The Just-In-Time (JIT) compiler, commonly referred as JIT Compiler, is a part  of Java Runtime Environment (JRE) that improves the performance  of Java applications at runtime. In computing JIT compilation, which is also known as  “Dynamic Translations” is compilation done during execution of a program.  Traditional Java compiler compiles high-level Java source code… Continue reading Just-In-Time (JIT) Compiler