Skip to content

Instantly share code, notes, and snippets.

View cluelessperson's full-sized avatar

Clueless cluelessperson

View GitHub Profile
services:
bungee-cord:
image: itzg/bungeecord
networks:
public:
ipv4_address: REDACTED.20
ipv6_address: REDACTED::20
hub:
server {
listen 80;
listen [::]:80;
server_name example.com;
root /var/www/example.com/;
location / {
return 301 https://$host$request_uri;
}
}
Dec 27 03:12:10 ztab NetworkManager[677]: <debug> [1577416330.2005] device[0x55a1322c6610] (wlp0s20f3): wifi-scan: scanning-state: scanning
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1577416332.3610] device[0x55a1322c6610] (wlp0s20f3): wifi-scan: scanning-state: idle
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1577416332.3709] device[0x55a1322c6610] (wlp0s20f3): matched hidden AP 78:8A:20:D7:C6:50 => "<NAME>"
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1577416332.3721] device[0x55a1322c6610] (wlp0s20f3): failed to match hidden AP <MAC>
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1577416332.3739] device[0x55a1322c6610] (wlp0s20f3): failed to match hidden AP <MAC>
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1577416332.3756] device[0x55a1322c6610] (wlp0s20f3): failed to match hidden AP <MAC>
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1577416332.3767] device[0x55a1322c6610] (wlp0s20f3): failed to match hidden AP <MAC>
Dec 27 03:12:12 ztab NetworkManager[677]: <debug> [1
// resolution
$fn=100;
// head
difference() {
color("#2196F3", 0.75)
translate([3.5, 2, 0])
cylinder(h=20, d=50, center=false)
;
(venv) zac@ztab:/zac/zsync/work/PyCharmProjects/zsort$ pip install PyQt5
Collecting PyQt5
Using cached https://files.pythonhosted.org/packages/3a/fb/eb51731f2dc7c22d8e1a63ba88fb702727b324c6352183a32f27f73b8116/PyQt5-5.14.1.tar.gz
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing wheel metadata ... error
Complete output from command /zac/zsync/work/PyCharmProjects/zsort/venv/bin/python /zac/zsync/work/PyCharmProjects/zsort/venv/lib/python3.8/site-packages/pip-19.0.3-py3.8.egg/pip/_vendor/pep517/_in_process.py prepare_metadata_for_build_wheel /tmp/user/1000/tmp94jnsdc7:
Querying qmake about your Qt installation...
/usr/bin/qmake -query
Traceback (most recent call last):
arduinoOTA104.name=ESP8266 (10.40.64.70)
arduinoOTA104.program.tool=arduinoOTA
arduinoOTA104.ip=10.40.64.70
arduinoOTA104.program.params.verbose=
ARG COHEN3_REPO=github.com/opacam/Cohen3
ARG COHEN3_TAG=master
FROM python:3.8.2-slim as build
ARG COHEN3_REPO
ARG COHEN3_TAG
RUN apt-get -yqq update && apt-get -yqq install git build-essential && ldconfig
RUN mkdir /wheels && cd /wheels && pip wheel git+git://${COHEN3_REPO}@${COHEN3_TAG}
import { key } from "./key.js";
import { loadScript } from "./loadScript.js";
loadScript(
"https://maps.googleapis.com/maps/api/js?key=" + key,
() => loadScript("map.js", () => render_map()),
);
#include "leds.h"
#include <FastLED.h>
CRGB leds[NUM_LEDS];
void setup_leds () {
FastLED.addLeds<NEOPIXEL, LED_PIN>(leds, NUM_LEDS);
fill_solid(leds, NUM_LEDS, CRGB::Red);
}
#include <Arduino.h>
#include "wifi/wifi.h"
#include "leds/leds.h"
#include <TaskScheduler.h>
#include <ESPAsyncWebServer.h>
#include "AsyncJson.h"
#include "ArduinoJson.h"
void check_wifi();