What is a Graph data structure? A Graph is a collection of nodes and edges in a way that nodes are connected by an edge. Graph Terminologies fig01 Vertex or Node Every individual point that holds or represents some kind of data is called vertex or n...
I was working on the vue2 app and wanted to set up a unit test. Since vue3 is now available, and their testing libraries have also been updated to support vue3, Because of versioning, I had difficulty configuring vue2 with test-utils. That is why I a...
☝️This is a graph. How? A graph is a collection of nodes and edges in a way that nodes are connected by edges. How does the computer understand what is a graph? and what are nodes and edges? There are two commonly used techniques for representing gra...
What is this 👇? var favoriteNumber int = 7 a variable of the name "favoriteNumber" of a type integer that stores 7. similarly var favoriteColor string = "black" a variable of the name "favoriteColor" of a type string that stores "black". pretty si...
I have been working on this project for a couple of months it seems a perfect time to share. #christmashackathon Repositree is a GitHub repository or file explorer that helps to navigate the files like your IDE. Features IDE-like code tree for GitH...
google-auth-simplify is a npm package that simplifies google-auth-library in 3 steps: Generate auth URL Get auth token Get user info So basically, it's just a wrapper that wraps all complex parts of google-auth-library. you can say it's a facade...