out() vs. outE() – JanusGraph and GremlinData Science by Sunny Srinidhi - March 3, 2021March 3, 20210 JanusGraph and Gremlin have the out() and outE() functions which help with traversals. But what’s the difference between the two? Let’s see.
Getting Started With JanusGraphData Science by Sunny Srinidhi - February 25, 2021February 25, 20211 JanusGraph is a graph processing tool that can query distributed graph data in milliseconds. In this post, we’ll see how to get started with it.
I made a website which tells if you’re wearing a mask or not – without machine learningTech by Sunny Srinidhi - January 11, 2021January 11, 20211 In this post, I talk about how I built a website which can detect maks, gloves, and more – all without writing any machine learning code.
Free apps vs. Paid appsTech by Sunny Srinidhi - December 19, 20200 Even though free apps are, well, free, they actually are not. Learn how you’re paying for all the free apps you download.
Binary Search Tree Implementation in JavaTech by Sunny Srinidhi - October 1, 2020October 1, 20200 In this post, we’ll see how to implement binary search tree data structure in Java. Also, we’ll see how to construct and traverse a BST.
Different ways of iterating on a HashMap in JavaTech by Sunny Srinidhi - August 7, 2020August 7, 20200 In this post, we will learn how to iterate over the keys in a HashMap in five different ways, including a couple of Streams APIs.
The art of load balancing – Part 2Tech by Sunny Srinidhi - July 27, 2020July 27, 20200 There are many strategies used by a load balancer. Here, continuing from part 1, we’ll see what these strategies are and how they work.
The art of load balancing – Part 1 (Understanding a load balancer)Tech by Sunny Srinidhi - June 3, 2020June 3, 20200 We hear about load balancers everywhere. But what does it mean and how does it work? Can you try it out youself? Let’s see.
Kinesis Data Streams vs. Kinesis Firehose Delivery StreamsData Science by Sunny Srinidhi - May 25, 2020August 27, 20240 I have talked about Kinesis before, and I'm sure you've been using Kinesis for longer than me. But according to what I've seen, not all teams or companies use all parts of Kinesis. And, there are four parts in Kinesis: Ingest and process streaming data with Kinesis streams - Kinesis Data Streams Deliver streaming data with Kinesis Firehose delivery streams - Kinesis Firehose Delivery Streams Analyse streaming data with Kinesis analytics applications - Kinesis Analytics Ingest and process media streams with Kinesis video streams - Kinesis Video Streams All these four parts offer something different. Well, the last two are definitely different than the first two. But it's the first two that I see a lot of people getting confused with. So I thought I'll
Why caching is important to improve your system’s performanceTech by Sunny Srinidhi - May 5, 2020December 18, 20210 We often hear about caching data on servers, but exactly does that mean? And how do we cache data? What are the different approaches?