I hereby claim:
- I am andrew-smith on github.
- I am andrew_smith (https://keybase.io/andrew_smith) on keybase.
- I have a public key whose fingerprint is 9487 27D6 C4EB 61A7 4703 6AAA 741A 8BDD 006D E4FF
To claim this, I am signing this object:
| FROM ubuntu:22.04 | |
| RUN apt-get update | |
| RUN apt-get install -y build-essential libssl-dev curl wget git cmake | |
| # pull down repos | |
| RUN git clone https://github.com/Exiv2/exiv2.git | |
| RUN git clone https://github.com/Fimagena/raw2dng.git | |
| # raw 2 dng libs |
| systemctl stop brltty-udev.service | |
| sudo systemctl mask brltty-udev.service | |
| systemctl stop brltty.service | |
| systemctl disable brltty.service | |
| # unplug and plug back in your device after this | |
| # After updating ubuntu - displaylink would no longer work. | |
| # Checking the syslog the following messages showed up: | |
| # systemd[1]: displaylink-driver.service: Scheduled restart job, restart counter is at 1. | |
| # systemd[1]: Stopped DisplayLink Driver Service. | |
| # systemd[1]: Starting DisplayLink Driver Service... | |
| # sh[1933]: modprobe: ERROR: could not insert 'evdi': Invalid argument | |
| # sh[1958]: Module evdi/1.7.0 already installed on kernel 5.8.0-48-generic/x86_64 | |
| # sh[1934]: modprobe: ERROR: could not insert 'evdi': Invalid argument |
| npx sls logs -f functionname --startTime 60m | awk '/REPORT/ {print $9","$18}' |
I hereby claim:
To claim this, I am signing this object:
| function connect_to_wifi(ssid, password, callback) | |
| wifi.setmode(wifi.STATION) | |
| wifi.sta.config(ssid, password) | |
| wifi.sta.connect() | |
| secondsWaited = 0 | |
| secondsToWait = 15 | |
| -- WIFI CONNECT HAS ALARM ID 0 |
| #include "stdafx.h" | |
| /* | |
| // configs | |
| //image to load (will not load if USING_VIDEO = true) | |
| #define IMAGE_NAME "fire2.jpg" | |
| //video to load | |
| #define VIDEO_NAME "flamethrower.mp4" |
| body { | |
| background-image:url(%%pyro%%); | |
| background-repeat:no-repeat; | |
| background-attachment:fixed; | |
| background-position: right bottom; | |
| background-color: #E5964B; | |
| } | |
| #header-bottom-left { background-color: #E5964B; } |
| import java.math.BigInteger; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |