Skip to content

Instantly share code, notes, and snippets.

@skybotz
skybotz / raspberry-pi-2-3-and-4-wireless-bridge-ubuntu-server-18.04-arm+netplan.md Raspberry Pi 2/3B/B+/4B Wireless Bridge using Ubuntu Server 18.04 ARM Image and Netplan

Raspberry Pi 2/3B/B+/4B Wireless Bridge using Ubuntu Server 18.04 ARM Image and Netplan

The initial goal of this project is to use the raspberry pi in place of my Wireless Range Extender and then going from 3 wireless networks (2.4ghz, 2.4ghz extended, 5ghz) at home to only one (5ghz). This way I'm reducing the exposition to radio waves for the whole familly at home.

Let's go technical

Ok, enough drama for now, let's go technical. 😁

Setup

@skybotz
skybotz / README.md
Created July 19, 2021 07:07 — forked from chatchavan/README.md
Setup Wifi on Raspberry Pi

Setup Wireless LAN for Raspberry Pi

The following guide describes how to setup Raspberry Pi to connect to Wifi. It was tested on the following environment:

  • Raspberry Pi Model B
  • Edimax EW-7811Un USB Wifi dongle
  • OS: Raspbian Jessie

Here are the overview of the steps:

@skybotz
skybotz / 0-4-steps-get-docker-with-gpu-on-ubuntu-2004.md
Created June 5, 2021 16:37 — forked from hideojoho/0-4-steps-get-docker-with-gpu-on-ubuntu-2004.md
4 steps to get a docker running with GPU on Ubuntu 20.04

4 steps to get a docker running with GPU on Ubuntu 20.04

Environment

  • Ubuntu 20.04
  • CUDA 10.2
  • Docker Latest

Four Steps

@skybotz
skybotz / ESP32_MPU6050-DMP_WiFi.ino
Created May 6, 2020 14:23 — forked from arvidtp/ESP32_MPU6050-DMP_WiFi.ino
Code for using the MPU6050-DMP6 with the Sparkfun ESP32 Thing and UDP data sent over WiFi - Stable!
/* ===================== TO DO =====================
* - Add remote control of esp.reset()?
* - Add another sensor of some kind?
*
*/
#include <WiFi.h>
#include <WiFiUdp.h>
#include <Wire.h>
@skybotz
skybotz / wget.sh
Created April 30, 2020 05:55 — forked from crittermike/wget.sh
Download an entire website with wget, along with assets.
# One liner
wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com
# Explained
wget \
--recursive \ # Download the whole site.
--page-requisites \ # Get all assets/elements (CSS/JS/images).
--adjust-extension \ # Save files with .html on the end.
--span-hosts \ # Include necessary assets from offsite as well.
--convert-links \ # Update links to still work in the static version.