Blog

Blog Post Image
Deploying Ruby Script to AWS Lambda Function and Layers

After exploring basic things in AWS lambda for Ruby, I like to create a minimal set up to deploy and manage ruby function to AWS Lambda.Before using serverless frameworks like AWS Serverless Application Model or The Serverless Application Framework etc., I started with AWS CLI to understand the lambda deployment behind the screen.

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

From a beginner to an expert, every ruby programmer would have known that ruby is a Fully Object Oriented language. How far is this true?

Read More
Blog Post Image
Sendgrid Dynamic Template — With Ruby and Rails

ActionMailer has been the default option when it comes to sending email from a Rails application.

Read More
Blog Post Image
Notes: VSCode + Vetur + ESLnit + EditorConfig

A quick note to have the best settings for VSCode for Vue CLI Projects that has a strict linting. You should also need to use Vetur.

Read More
Blog Post Image
Using Ruby-Gems with Native Extensions on AWS Lambda

In our previous post, we took a simple walk through on getting started with ruby on AWS lambda. If you have not read it yet, I strongly recommend to have a quick glance over it here.

Read More
Blog Post Image
Avoiding duplicate jobs in Sidekiq

Recently, we were faced with a very trivial yet challenging issue in Sidekiq. One of our models gets updated frequently which results in triggering a bunch of after_update callbacks that sends a reindex signal to our Elasticsearch engine.

Read More
Blog Post Image
Koans driven learning

I has been a long time since I coded in Ruby and I have to work in Ruby project now. So as a refresher started doing the Koans. I should say the experience (read it as enlightenment) was awesome.

Read More
Blog Post Image
Postgres copy data using dblink extension.

https://www.postgresql.org/docs/9.3/contrib-dblink-function.html

Read More
Blog Post Image
Retaining the form data with local storage using Vuex

Recently we faced a situation where we have to retain a pretty big form data if the user got redirected back to our site from payment gateway in case of payment failure. We chose local storage to resolve this issue. Let’s see how we implemented local storage using Vuex.

Read More
Blog Post Image
Vue Lazy Routes & loading chunk failed

Lazily loaded routes is a popular technique for faster page loading by splitting the build file into many chunks and load it on demand. Vue’s async component feature and webpack’s code splitting feature made it easy to lazy-load route components.

Read More
Blog Post Image
Training Deep learning models with Google Cloud ML Engine

We often develop our DL models without many difficulties but training them with a huge amount of dataset is always a painful task when you have limited computing resources.

Read More
Blog Post Image
Object Detection with Mask RCNN on TensorFlow

Detecting objects is one of the elementary problems in the Computer vision world. This is very crucial and often falls under the initial layers determining the Quality of data.

Read More