• Two Sum #1 Leetcode Problem #Leetcodeseries

    Two Sum #1 Leetcode Problem #Leetcodeseries

    Problem name: Two Sum Problem statement: Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. Example 1: Input: nums = [2,7,11,15], target Read more

  • Deploy React app on GITHUB pages

    Deploy React app on GITHUB pages

    Hosting apps/websites on internet is an important part when it comes to show casing your work or may be deploying your app for a small scale work. Github provides hosting for the websites for free using Github pages where anyone can deploy the webpages. Coming on to the todays topic : Hosting react app on Read more

  • React Fragments: All you need to know

    React Fragments: All you need to know

    <p class="has-drop-cap" value="<amp-fit-text layout="fixed-height" min-font-size="6" max-font-size="72" height="80">A fragment is a common pattern in React which is used to return multiple elements. A fragment is a common pattern in React which is used to return multiple elements. Since in react we have to group jsx under a some parent. Fragments let us group a list of Read more

  • CSS: Middle element takes space with ellipsis

    CSS: Middle element takes space with ellipsis

    We all are good with flex boxes and all. Lets have a case when we have a box of width something say; 300px, now adding 3 div inside this such that the middle text can be very long. So for this we will be using ellipsis as text-overflow. So, taking all this in mind. Lets Read more

  • React Loadable

    React Loadable

    React Loadable is used for Splitting the Code by Components and Routes. HOW? Code splitting is a technique which is being used with modern web app development that allows to load chunks of code only when needed. These days we are creating more complex web apps. Challenge these days is not about the designs or style. Target Read more

Advertisements