Revamp Your Coding Workspace with Jupyter Notebook Extensions

Yo, fellow Jupyter notebook user! Have you ever wished for some extra features to make your notebook experience even better? Well, have no fear, because "notebook extensions" are here! These handy little plug-ins can easily be added to your Jupyter notebooks to enhance their functionality. To get started, we’ll need to install the "Jupyter NbExtensions […]

Transform Your Jupyter Notebook with Custom Themes

So you’ve been using Jupyter notebooks for a while now and the default light theme is starting to make you feel like a vampire. Fear not, my friend! I have just the solution for you. Enter the "jupyter-themes" library – a free and open-source tool that lets you install and customize themes to your heart’s […]

Maximizing Machine Learning Potential: Understanding the Types

Yo! Let’s talk about the different types of machine learning we’ve got out there. We’re gonna break it down based on the level of supervision the algorithms receive during training. This is called Supervised/Unsupervised Learning. Here are the four main categories: Supervised Learning: This is when the training data comes with labels, which are basically […]

AWS Disaster Recovery: Building Resilience for Your Business

Any kind of failure can negatively impact a business value and when designing an application we need to proactively design for events like that. The preparation of recovering from a failure is Disaster Recovery(DR). In this blog, we’re going to list down the disaster recovery recommendations provided by AWS. We’re going to keep the subject […]

Amazon Cloudfront FAQ

If you’re not aware of Amazon Cloudfront Service, I’d suggest you to read What is Amazon Cloudfront? before going through the FAQ. With CloudFront, your files are delivered to end-users using a global network of edge locations. Amazon CloudFront employs a global network of edge locations and regional edge caches that cache copies of your […]

AWS Serverless Application Repository FAQ

If you’re not aware of Serverless Application Repository Service, I’d suggest you to read What is AWS Serverless Application Repository? before going through the FAQ. Serverless applications eliminate the need to provision, deploy, or manage servers or other infrastructure. They come with built-in high availability and they scale continuously and automatically. You can use one […]

AWS IAM FAQ

If you’re not aware of AWS IAM Web Service, I’d suggest you to read What is AWS IAM? before going through the FAQ. You can use AWS IAM to securely control individual and group access to your AWS resources. You can create and manage user identities ("IAM users") and grant permissions for those IAM users […]

Amazon EC2 FAQ

If you’re not aware of Amazon Elastic Compute Cloud Service, I’d suggest you to read What is Amazon EC2? before going through the FAQ. Starting July 2018, all newly created EC2 resources will receive longer format IDs. The new format will be -, e.g. “vpc-1234567890abcdef0” for VPCs or “subnet-1234567890abcdef0” for subnets. Impact analysis: Some failure […]

Demystifying the Akka Actor Model

What’s an actor model? The actor model in computer science is a mathematical model of concurrent computation that treats "actors" as the universal primitives of concurrent computation. In response to a message that it receives, an actor can: make local decisions, create more actors, send more messages, and determine how to respond to the next […]