GSGanesh Sininspire99.hashnode.dev·Sep 5, 2023 · 2 min readGraphQL - my learnings in progressGraphQL is a query language - we can think of SQL ( getting data, mutating data ) over HTTP. With REST API as well, we have the capabilities to query for data or mutate data. GraphQL is an alternative to REST API. It comes into the picture when the d...00
GSGanesh Sininspire99.hashnode.dev·Aug 16, 2023 · 2 min readFeature flags in productsI had earlier heard about A/B testing, which is where we divide set of users into groups of A and B. Certain product behavior is observed only by group A and not by anyone from group B. In this way, companies are able to test features and get feedbac...00
GSGanesh Sininspire99.hashnode.dev·Apr 26, 2023 · 1 min readAWS - my learnings in progressAmazon web services are set of services which developers can invoke over web. These services are hosted within the datacenter maintained by AWS. EC2 - a virtual machine - mainly focusing on compute - elastic compute00
GSGanesh Sininspire99.hashnode.dev·Apr 26, 2023 · 1 min readKubernetes - my learnings in progressKubernetes is a container orchestration tool. What do we mean by orchestration? It involves managing the lifecycle of the containers. It has evolved with the idea of 'grouping'. Pod, Daemon set etc. Again, goes back to mathematics, a set of items, or...00
GSGanesh Sininspire99.hashnode.dev·Dec 30, 2022 · 2 min readGradle - my learnings in progressYou might have seen a file named - gradlew or gradlew.bat. What is gradlew ? It is gradle wrapper - that means that gradle is embedded inside this wrapper It means that we don't need gradle to be installed in your machine. So that's why we see tha...00