Saturday 16 June 2018

Serverless Architecture

In simple words Serverless Architecture or Serverless computing is where developer doesn't need to worry about managing a server, server management and capacity planning decisions are completely hidden from developer.
what is Serverless Architecture ?

Tuesday 1 May 2018

How to enable inbuilt Linux subsytem in Windows 10

Windows 10 provide inbuilt Linux subsystem , lets see how to enable it in your System.

Step 1 :   Go to Windows update and change uses mode to Developer Mode
select developer Mode in Windows update

Sunday 1 October 2017

How to check Palindrome

Check if a string is palindrome or not is one of most common question we encountered during our basic days.

Let's Solve this problem with a Naive but efficient approach in this case.

Pseudocode :

  1. i=0, j=n
  2. while i < j:
  3.    check if i'th element is not equal to j'th
  4.      then return False 
  5.   else i++,j--
  6. loop end
  7. return True

Blogger Widgets