Skip to content

Instantly share code, notes, and snippets.

View jwegas's full-sized avatar

Evgenii Zhukov jwegas

  • Russia
View GitHub Profile
@jwegas
jwegas / README.md
Created December 16, 2020 02:11
Allow you Raspberry Pi to connect to Wi-Fi.

[EN] To make you Raspberry Pi being connected to your Wi-Fi do the steps:

  1. on SD-card with Rapbian OS create file /boot/wpa_supplicant.conf;
  2. fill this file with content from snippet wpa_supplicant.conf;
  3. replace <your_wifi_network_name> with name (ssid) of your home network;
  4. replace <password_to_connect> with password you use to connect to your network;
  5. Optional. You can replace value of country field with your country's key (US, GB, etc).

Insert SD-card into Raspberry Pi and it will connect to your Wi-Fi after start.

@jwegas
jwegas / xgb_aws.txt
Last active May 1, 2016 06:35 — forked from walterreade/xgb_aws.txt
XGBoost on AWS
sudo apt-get install make
sudo apt-get update
sudo apt-get install gcc
sudo apt-get install g++
sudo apt-get install git
sudo git clone https://github.com/dmlc/xgboost
cd xgboost
sudo sh ./build.sh
cd python-package
sudo python setup.py install