In this blog post, I will show you how to squash git commits into a single commit.GoalConsider that I have three commits below,commit 9a0fb88031d65(HEAD -> master)Third commitcommit 598202a5e1ce0Second commitcommit 8bdd989b96368First commitNow, I want to … [Read more...] about How to squash git commits
Scan string/int in golang
Let's see how to scan string and int in golang. You need to import the following packages for operating on strings.Scan a stringpackage mainimport ( "bufio" "errors" "fmt" "os" "strings" )func main() { fmt.Println("Please enter a String") … [Read more...] about Scan string/int in golang
Deep Learning: Image classification from webcam
In this blog post, we will see how to do image classification based on images captured from web camera using matlabPrerequisitesAs a prerequisite, we will require the following add-ons, which can be installed from the add-ons manager. Once the installation is complete, you should be able to … [Read more...] about Deep Learning: Image classification from webcam
Deep Learning: Image classification using Alexnet
In this blog post we will discuss how to do image classification using MATLAB, Let's begin.What is deep learning?Deep learning is a subset of machine learning in Artificial Intelligence (AI) that has networks capable of learning unsupervised from data that is unstructured or unlabeled. … [Read more...] about Deep Learning: Image classification using Alexnet
Unboxing alpha AWUS036NHA wireless adaptor
Key FeaturesStandard: 802.11 b/g/n long range usb adaptorChipset: Atheros AR9271Date range: up to 150MbpsAntenna: 5dBi external dipole antennaFrequency: 2.4-2.5 GHzBuy Here, … [Read more...] about Unboxing alpha AWUS036NHA wireless adaptor
How to install CentOS with GUI for desktop/laptop
This blog post is a comprehensive guide about installing CentOS on your laptop. I will walk you through the steps involved in installing the OS & GNOME desktop (GUI). Download and create bootable USB Download the image from here & Select "everything-iso" from the options available. You need … [Read more...] about How to install CentOS with GUI for desktop/laptop
How to install ruby on rails on ubuntu or kali linux
IntroductionIn this blog post we will talk about how to install ruby on rails on ubuntu or kali linux. We will use RVM as its really easy to manage multiple ruby environments. Follow steps below to simply install the setup through command line.Installing Ruby using RVMRuby Version … [Read more...] about How to install ruby on rails on ubuntu or kali linux
How to install metasploit on kali linux or ubuntu
IntroductionIn this blog post I will show you how to install Metasploit framework on kali linux or ubuntu. The Metasploit Project's best-known creation, is a software platform for developing, testing, and executing exploits for security purpose.Installationsudo apt-get updateLets … [Read more...] about How to install metasploit on kali linux or ubuntu