2 Eggs and 100 Floors Problem (Solved)

2 Eggs and 100 Floors Problem (Solved)

Ashish Lahoti

The 2 Eggs and 100 Floors problem is frequently asked in interview to evaluate candidate’s understanding on linear search and binary search. I have tried to explain this problem as easy as possible.

Einstein's Riddle

Einstein's Riddle

Ashish Lahoti

The legend says that this problem was created by Albert Einstein in the last century. Einstein said that only 2% of the world could solve it.

The 6s Math Puzzle

The 6s Math Puzzle

Ashish Lahoti

This is a pure mathematical puzzle which evaluate your ability to solve maths equation. This is a great problem for building number sense.

How to configure Swagger in spring boot

How to configure Swagger in spring boot

Ashish Lahoti

Swagger library is useful if you are creating REST services in spring boot web application. Swagger user interface allows you to view REST services and execute GET, POST, PUT, DELETE HTTP endpoints. This is helpful since you do not need to use Postman or some other tool to test REST Apis.

Follow these steps to configure swagger in your spring boot application:-

How to create and configure custom banner in spring boot

How to create and configure custom banner in spring boot

Ashish Lahoti

Spring boot application comes with default banner which shows up first when you start your application.

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.1.3.RELEASE)

You can replace above banner with your self made custom banner in following two easy steps:-

How to disable command line properties in spring boot

How to disable command line properties in spring boot

Ashish Lahoti

Spring Boot Application converts any command line arguments starting with --, such as --spring.profiles.active=dev to a property by default and adds them to the Spring Environment. Command line properties always take precedence over other property sources.

If you do not want command line properties to be added to the Environment, you can disable them from SpringBootApplication main method as follows:-