Recently I came across a problem where we need to do some changes in a small application where we don’t have the source code. Around 5 years back my team members built a small application for a temporary purpose and Continue Reading
tankala
Schedule your task in serverless style using Google App Script
Sometimes you want to automate a task which you do daily manually but you don’t have a server or a separate machine. If that is the problem then don’t worry Google App Script there to save you. Our company has Continue Reading
A small hack to figure out our code problem with Async Queue
I used the Async Queue several times. It was always easy peasy. Recently when I am using for one use case faced a problem. I searched to find the solution didn’t find anything useful so finally figured out the problem Continue Reading
Redis Hashmaps or Hashes example in Node.js
I always used Redis as plain Hashmap where keys and values are just strings. Slowly I forgot Redis supports a couple data types (Lists, Sets, Sorted Sets, Hashes) until one of our Real-time machine learning prediction application gave trouble due Continue Reading
Build the MNIST model with your own handwritten digits using TensorFlow, Keras, and Python
This post will give you an idea about how to use your own handwritten digits images with Keras MNIST dataset. If you don’t know how to build a model with MNIST data please read my previous article. Recently one guy Continue Reading
Solving Curious case of MountainCar reward problem using OpenAI Gym, Keras, TensorFlow in Python
This post will help you to write gaming bot for less rewarding games like MountainCar using OpenAI Gym and TensorFlow. Once I built a model for playing CartPole game felt confident and thought let’s write code for one more game Continue Reading
Build your First AI game bot using OpenAI Gym, Keras, TensorFlow in Python
This post will explain about OpenAI Gym and show you how to apply Deep Learning to play a CartPole game. Whenever I hear stories about Google DeepMind’s AlphaGo, I used to think I wish I build something like that at Continue Reading
Handling Big Numbers/Integers in Node.js at the time of Cassandra full table scan
Right now around 100 Gigabytes of data gets generated related to user activities at our company’s different applications/products. The product which I am working on basically consumes all of that and gives insights about users behavior and also helps to Continue Reading
Running PySpark with Cassandra using spark-cassandra-connector in Jupyter Notebook
We are facing several out of memory issues when we are doing operations on big data which present in our DB Cassandra cluster. So we decided its better to use Spark to solve this problem. It became a tough & Continue Reading
Run your first Spark program using PySpark and Jupyter notebook
I think almost all whoever have a relationship with Big Data will cross Spark path in one way or another way. I know one day I need to go for a date with Spark but somehow I was postponing for Continue Reading