Scatter plot is a basic plot of dots. You can draw it by calling plt.scatter(x,y). The following example shows a scatter plot of random dots: import numpy as np import matplotlib.pyplot as plt # Set the random seed for NumPy function to keep the results reproducible np.random.seed(42) # Generate a 2 by 100 NumPy Array […]
DevOps
EFS Mount Issue “Failed to resolve server: Name or service not known”
The Problem mount.nfs4: Failed to resolve server fs-d3d54350.efs.us-east-1.amazonaws.com: Name or service not known or: ping: unknown host fs-d3d54350.efs.us-east-1.amazonaws.com The Solution 1. Open the Amazon VPC console. 2. Select the VPC. 3. Review the information in the Description tab. In this example, both settings are enabled. DNS resolution Enabled DNS hostnames Enabled 4. To update these […]
How to Stop and Start Ec2 instance using Jenkins
Jenkins is an open-source Continuous Integration tool. However, it’s not limited to Continuous Integration alone. Jenkins is supported by a large number of plugins that enhance its capability. The Jenkins tool is written in Java and so are its plugins. The tool has a minimalistic GUI that can be improved using specific plugins if required. […]
The Ultimate Beginner’s Guide to Static Website Hosting With Google Firebase (for FREE)
I am a total noob when it comes to web development but I am improving my tech skills every day. I have tried to keep this post as simple as I can so that it could help beginners like me. I have taken care of all the steps and codes I mentioned in this blog […]
How to Map Static IP to your Domain (with GoDaddy example)
To set up a domain name, there are a couple of steps to do. First, you need to purchase a domain name from a domain name registrar. Second, you need to set up DNS records for your domain by using a DNS hosting service. Let’s do this one by one. Prerequisite – A domain name […]
Hello Newbies in Tech! Switching From Windows to Linux? Read This First
I am a newbie in tech. I have been using Linux and Windows side by side for quite some time now. This blog post is based on my personal experience. I love Windows. I have used Windows all my life. Once, I thought of trying out a Linux distribution. I installed Ubuntu, but then I […]
A Beginner’s Guide To Create Files & Folders Inside Windows Subsystem For Linux
In this blog, we will learn how to create or move files and folders to Linux root system from Windows. Familiarity with Windows Subsystem for Linux (WLS) is required. Please read my earlier blog post – Windows Subsystem For Linux – Run Linux on Windows (It’s FAST). This is part 3 of our 4 part […]
Windows Subsystem For Linux – Run Linux on Windows (It’s FAST)
I am a newbie in tech. I have been using Linux and Windows side by side for quite some time now. This blog post is based on my personal experience. Feedback Welcome. Would really appreciate your time. In my earlier blog post Linux Vs Windows – Why Linux Is Better for Programming & Web Dev, […]
The Ultimate Guide To Use VS Code With Windows Subsystem for Linux (WSL)
In this blog, we will learn how to use Visual Studio Code in Windows Subsystem for Linux (WSL). In case you have not heard about WSL before, please read my earlier blog posts – What is Windows Subsystem For Linux and How To Run Linux on Windows. This is part 5 of our 6 part […]
My Development Environment Set up on Windows to use Python for Web Dev & Data Science
Techies have different set-ups on a Windows machine to use Python for web development, machine learning or data science. For the newbies in tech, I recommend any one of the following two development environment set-ups (also recommended by Microsoft) to start their coding journey: Use Windows Subsystem for Linux (WSL) and VS Code This is […]