Posts

Showing posts from November, 2020

Reverse Email Lookup using Proxycurl

Image
    Ever wonder what information you can get from the email of a person? The information that you can get only from the Email address are: Email address owner information Email address owner Country Job profile and associated social media account linked with the Email address You can also get the phone number, permanent address and profile picture of the Email address owner Now you might be thinking HOW?  Using Reverse Email Lookup Reverse Email Lookup:  Reverse email lookup is the process of finding the identity of an email sender by using their email address. This can be used to confirm the identity of an email sender or to find out more information about them. Use case of Reverse Email Lookup: Scam and Fraud Prevention Verification of Ecommerce Transactions Credit Risks Analysis HR Talent Identification To know more about Reverse Email Lookup check the blog  3 Simple Methods To Do Reverse Email Lookup How to perform Reverse Email Lookup? Here comes Proxycurl into the picture. Proxy

Integrating LVM with Hadoop and providing Elasticity to Datanode Storage

Image
  What is LVM? LVM is a tool for logical volume management which includes allocating disks, striping, mirroring and resizing logical volumes. With LVM, a hard drive or set of hard drives is allocated to one or more physical volumes. LVM physical volumes can be placed on other block devices which might span two or more disks. What is Hadoop? The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures. Let's get started: First launch an instance in AWS and configure it as Master launch an instance in

Configure HTTPD Server and Python Interpreter on Docker Container.

Image
What is Docker? Docker is a set of the platform as service products that use OS-level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own software, libraries, and configuration files; they can communicate with each other through well-defined channels.  Let's get started: Install & Run Docker Container in your Linux Terminal. 1. Go to link copy this link. 2. Go inside directory  `/etc/yum.repos.d/` 3. Create a file named `docker.repo` 4. Inside docker.repo write the following 👇 5. Save the file. Now install Docker using the command  yum install docker-ce --nobest --allowerasing Docker is successfully installed, now we need to check  Docker service is started or not. To check Docker service is started or not use command systemctl status docker If it shows inactive ( dead ) like image above 👆 then we need to start service. To start Docker Service use command systemctl start docker  Now download OS i