Old_posts

100 Days Of Machine …

Here I pledge to dedicate 1 hour to coding or learning Machine Learning for the next 100 days!

Day 0: July 06, 2018

Today’s Progress

Learned about word embedding in Sequence Models course on Coursera, such as Word2Vec, negative sampling, GloVe word vectors and sentiment classification. …

How to reassign a static …

This post is a revised version of link.

The following steps should be followed:

  1. Edit the file /etc/dnsmasq.conf on your router, and update the mac address associated with the intended ip address.

    dhcp-host=<mac address>,<ip address>
    
  2. Stop dnsmasq service

    sudo systemctl stop …

How to configure DHCP …

Here are the steps for configuring a DHCP server in a local network.

Set static IP to the second network card enp9s3 (this name can be different on a different PC) on the DHCP server PC. Run

 sudo vi /etc/network/interfaces

Edit the file according to this sample:

# interfaces(5) file used by ifup(8) …