Getting Started With Apache AirflowData Science by Sunny Srinidhi - October 11, 2021October 11, 20210 I recently started working with Apache Airflow. And as is tradition, I’m telling you everything about it here.
Fake (almost) everything with FakerData Science by Sunny Srinidhi - September 30, 2021September 30, 20210 Generating customer and address data for testing has never been easier. We’ll see how to do that using the Faker Python library.
Querying Hive Tables From a Spring Boot AppData ScienceTech by Sunny Srinidhi - June 30, 2021June 30, 20211 In this post, we’ll see how to connect to a Hive database and run queries on that database from a Spring Boot application.
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.