author avatar

ayushsrivastava

Fri Feb 10 2023

Linked Lists

Linked list are a linear data structure like arrays. But unlike arrays they are not stored in a single place in memory. They are made up of connected nodes, where each node consists of data and address of the next node.

Why do we need Linked List?

• Arrays can store the similar data but they have an upper limit, we need to speculate the size of array in advance, and the allocated memory is generally equal to the speculated size of the array • Inserting and deleting data in between of Array is tedious, but in case of Linked List if we have the head node we can traverse to any node through it and insert new node

author avatar

keshav.chakravarthy

Thu Feb 09 2023

Set log level carefully, because depending on the level some logs may never be passed to the backend and will be unavailable for future debugging.

author avatar

vaibhav.yadav

Wed Feb 08 2023

We can use git shortlog instead of git log to group commits by author using --group=author option.

author avatar

keshav.chakravarthy

Mon Feb 06 2023

we can pin specific docker image to use by tagging the commit SHA

build:
  stage: build
  image: docker@sha256:the_sha
  services:
    - docker:dind@sha256:the_sha
author avatar

keshav.chakravarthy

Mon Feb 06 2023

To get help on gitlab CI the forum link is forum.gitlab.com

author avatar

syedsibtain

Mon Jan 16 2023

Aliases in Graphql. Let’s say we have a query that return us the cars Data. If we add both the queries, we will get an error. Fields "cars" conflict because they have differing arguments. Use different aliases on the fields to fetch both if this was intentional. UseCase Example: :point_down:This will throw error

{  
  cars(filter: "name = Cars") {
    edges {
      node {
        name
        speed        
      }
    }
  }
  cars {
    edges{
      node{
        name
      }
    }
  }
}
author avatar

mainak

Sat Jan 14 2023

test revalidate NEXT

Showing 32 to 34 of 66 results