Hi there 馃憢

Welcome to my blog!

Cheat Sheet for Installing and Configuring Nginx over HTTPS

Introduction I use Nginx in my workflow to serve Flask APIs, for network administrators Nginx installation is a simple task. However, for programmers and APIs developers it can be complicated. In this article, I summarized the commands needed to install and set up Nginx over HTTPS. Nginx Installation To install Nginx run these codes successively. $ sudo apt-get update $ wget http://nginx.org/download/nginx-1.21.1.tar.gz $ tar -zxvf nginx-1.21.1.tar.gz $ cd nginx-1....

July 14, 2021 路 root

Coding Neural Networks for Logistic Regression Using Linear Algebra & Numpy

Introduction Neural network鈥檚 most basic unit is a neuron. The way neurons interact and work together is the main determinant of the limits of a neural network鈥檚 complexity and sophistication. Similar to neurons found in the human brain, once a neuron receives a signal it is capable of combining it through linear regression, transforming it, and producing a new signal that is then received by another neuron. Neural networks are often seen in layers, with neurons in different levels interacting through the weighted attachments....

July 11, 2021 路 root

Advanced Data Cleaning and Processing Algorithms Using R Language

Introduction With the massive explosion of data generated and published in the past few decades comes new challenges. Data analysts and scientists now have to discover patterns in this unprecedented amount of raw and often redundant data. In order to do that, data must go through a very critical and sensitive process of cleaning to produce high quality data that can later be used to estimate and draw generalizable conclusions....

June 2, 2021 路 root

Using React.js to make a Music Player

introduction This is a simple project that was completed in approximately 3 hours Source Code. The whole project was programmed using React Hooks/Material-U. I relied very heavily on my pre-existing programming knowledge since other online tutorials have made the simple tasks unnecessarily more difficult. Once I had a grasp of how to manipulate audio documents using React the whole project was practically done and the only decisions and work left to be done was related to the overall aesthetics and looks....

May 12, 2021 路 root

Hello R Markdown

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. You can embed an R code chunk like this: summary(cars) ## speed dist ## Min. : 4.0 Min. : 2.00 ## 1st Qu.:12.0 1st Qu.: 26.00 ## Median :15.0 Median : 36.00 ## Mean :15.4 Mean : 42....

December 1, 2020 路 Frida Gomam