Blog

Blog Post Image
Real-Time Object Detection with Flutter, TensorFlow Lite and Yolo -Part 1

Impressed on the Machine Learning demo using Google ML Kit shown on Flutter Live ’18, we explore the same with on‑device machine learning instead of cloud hosted.

Read More
Blog Post Image
CircleCI jobs in your local machine

If you are setting up a new project, there is a high chance that CI setup won’t be an easy one. Main reasons are,

Read More
Blog Post Image
Capture your terminal like a pro

Have you seen a Github readme or medium post which displays terminal like this ? In this blog post we will see how we can create one,

Read More
Blog Post Image
Serverless on Kubernetes using Fission

Serverless architecture is often debated with container based Kubernetes as it allows scaling without much complexity. Kubernetes provides easy integration of different types of services on one cluster and enables micro service architecture. On the other hand, Serverless are event driven providing run on demand architecture.

Read More
Blog Post Image
Lifecycle of a Kubernetes Pod

Pod is the basic unit of k8s cluster. It can contain one or more containers which are the running process of our application. (To know more about pods, read here).

Read More
Blog Post Image
Namespace based Cache Expiry in Rails

Rails Abstract caching is one of its many coolest features. Following are the main factors one should consider while caching

Read More
Blog Post Image
Deploying ruby gems with native extensions on AWS Lambda using the serverless toolkit

An earlier article by Vinoth Kumar Natarajan explains how to use ruby gems with native extensions (like nokogiri) on aws lambda using AWS Serverless Application Model. In this article, I will brief how to do the same using the serverless framework.

Read More
Blog Post Image
Painlessly add unlimited to storage to Kubernetes

We have a large application running on Kubernetes. Recently we were about to be run out of space on the shared disk in production.

Read More
Blog Post Image
Boosting your Productivity with Guard for Ruby

Before jumping into what Guard is, let us take a scenario where we are solving some online coding problems like exercism. In this, the bunch of tests would drive the core logic. So our workflow would be to write some code, run the test, see which ones are failing and again write some code.

Read More
Blog Post Image
Master Parsing & Generating JSON in CLI

We often work with several JSONs multiple times a day. Many times, they are not even formatted and they are a pain to work with.

Read More
Blog Post Image
Is Everything An Object In Ruby? — Part-II

This is a continuation of our previous article “Is Everything An Object In Ruby? — Part-I”. We are verifying whether all the items in the Ruby language are objects. We had covered basic items like numbers, strings, symbols and classes. In this post, let's explore further.

Read More
Blog Post Image
Easter eggs for Beginners in Ruby

Learning a new language is always fun especially when you are excited to find what a language has to offer you. In this post, I am going to share few features in Ruby which I found interesting.

Read More