Skip to content

Instantly share code, notes, and snippets.

View kakashysen's full-sized avatar
🎯
Focusing

Jose Aponte kakashysen

🎯
Focusing
View GitHub Profile
@kakashysen
kakashysen / configure-wifi-raspberrypi.md
Last active March 16, 2016 14:51
How to configure wifi on raspberry pi from command line

How to configure wifi from command line

  • In the command line run sudo iwlist wlan0 scan command to list all wifi networks are in the range
  • Look this label ESSID:"<network-name>" in the result of each network
  • Edit wpa_supplicant.conf file with sudo , sudo vi /etc/wpa_supplicant/wpa_supplicant.conf
  • At the end of the file add next lines changing the values ssid network-name and psk password of your network
network={
    ssid="<your_network_name>"
 psk=""
@kakashysen
kakashysen / tricks-git.md
Last active September 23, 2016 14:12
How to with Git

Tricks for how to use git

How to change or move to an specific branch

  • git checkout <branch-name>

Example: git checkout development

How to update branch from web repository Hacer un pull de development desde upstream development

  1. git checkout