Latest

Healthcare Vulnerability Mapping Using K- means++ Algorithm and Entropy Method

Submitted on Fri, 06/11/2021 - 00:31

Vulnerable population in healthcare refer to those who are at greater risk of suffering from health hazards due to various socio-economic factors, geographical barriers and medical conditions. Mapping of this vulnerable population is a vital part of healthcare planning for any region. Results of vulnerability mapping later can help with meaningful interventions for healthcare demands.

This study focuses on combining geo analytics, unsupervised machine learning algorithm and entropy method for performing vulnerability mapping based on various above- mentioned factors.

Undoing in GIT

Submitted on Fri, 08/14/2020 - 16:48

GIT provides us with various mechanisms of undoing changes. Let us look at them one at a time. We are going to use the same scenario as in the article GIT basics where we have a folder named pond at /var/www/html/pond which contains two files; frogs and snakes.

Git basics

Submitted on Fri, 08/14/2020 - 16:47
GIT is a version control application which helps us to take snapshots of our file system. This becomes a very useful feature during application development process. What makes GIT unique is that it is a distributed version control system. Linus Torvalds, lead developer of Linux Kernel is responsible for development of GIT. It was the power of GIT which propelled the development of Linux Kernel to new heights.

Configure BIND as a forwarding, caching and local domain resolving DNS Server in Ubuntu

Submitted on Fri, 08/14/2020 - 16:46
This documentation is about configuring bind as a DNS server in Ubuntu. The DNS server is expected to achieve following tasks: 1. Resolve a local FQDN web.ddc to its private IP, 192.168.0.105. 2. Resolve global domains by forwarding the query to google's Public DNS servers at 8.8.8.8 and 8.8.4.4 3. Cache the query results for faster access in the future.

Tags

A Google App script tutorial for Google Sheet, Google Form and Google Mail

Submitted on Fri, 08/14/2020 - 16:45
We are going to design a Google form. For one of the fields we are going to create a select list which shall pull content from an existing Google Spreadsheet. When the user submits data through this form, the response is first stored in another Google spreadsheet and response details are also sent to a Gmail account.

Part I: CodeIgniter Basics

Submitted on Fri, 08/14/2020 - 16:44

Filesystem

Inside the CodeIgniter directory ci, there is a directory called application

This is the parent directory where our application will reside.

Inside this directory, there are four subdirectories which we sould be concerned with for now.

1. config

This directory has two files concerned with initial codeigniter configuration.

1.1 config.php

We need to define our base site URL in this file. This is a must. In our case, the file should read: