Posts

Showing posts with the label network

Ongoing Linux Cheatsheet

Image
Reference For Me, Reference For You? I often find myself using certain commands on semi-regular basis. Not regular enough to remember but enough to know what I am looking for. This is my list of snippets that others might find useful. I will do my best to update this from time to time. On a side note, I primarily use Ubuntu 18.04 (20.04 upgrade will likely happen when it comes out). I occasionally use distros other than Ubuntu but they are typically Debian based. Variables that you want to alter will be denoted as $VAR_NAME. Photo by Kevin Horvat on Unsplash Connecting To Wifi Using CLI - This uses the command line version of NetworkManager (nmcli) - Obviously you need to know your network name and password - Determine your network interface with ' nmcli device status '. Four columns will be displayed. Find wifi in the Type column and then the associated Device name is the interface name. Commands:  nmcli d wifi connect $NAME password $PASSWORD iface...

Machine Learning: Fight Smarter Not Harder

Image
Multi-layer neural network. Brains are cool. Computers are cool. Over the past several decades people have looked at creating a computer "brain" and boy were the researchers successful. Neural networks, or as I like to call them "computer brains" have come a long way and are something I am very interested in. Being able to add abstract learning to a computer is strange. Being able to "teach" a computer has been done for the past years without a problem but for me to sit down and try to do it is mindbogglingly complex. Sadly I haven't had much free time to write this week and so I will only quickly skim the surface and direct you to a great video to talk about the neural networks that I am going to be studying. I found this guy on YouTube and think his content is great. I am following along through his tutorials. Here is a link to his video and to my playlist that I am slowly building about ECE topics that interest me. You can check the videos ...