https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
Wavelength | Clear | Red | Blue | Green | |
---|---|---|---|---|---|
300.082 | 0.001366 | -0.533472 | 0.001622 | 0.000595 | |
303.059 | 0.001324 | -0.512613 | 0.001458 | 0.000543 | |
304.341 | 0.001306 | -0.503656 | 0.001388 | 0.000521 | |
345.435 | 0.001664 | -0.226396 | -0.000341 | -0.000182 | |
345.664 | 0.001689 | -0.224927 | -0.000337 | -0.000186 | |
350.948 | 0.003065 | -0.191446 | 0.001366 | -0.000272 | |
351.987 | 0.005193 | -0.18496 | 0.001444 | -0.000289 | |
357.556 | 0.006174 | -0.15077 | 0.001382 | -0.000378 | |
361.138 | 0.009636 | -0.129404 | 0.001399 | -0.000434 |
mmcli -m 0 | |
# shows "IP supported: ipv4, ipv6, ipv4v6" but "initial bearer ip type: ipv4" | |
mmcli -m 0 --3gpp-set-initial-eps-bearer-settings="ip-type=ipv4v6" | |
# modem will disconnect and reconnect | |
mmcli -m 0 | |
// Channel ID filters | |
// Blocked by context menu (Prof. Dr. Christian Rieck) | |
UCSExr_QUT6h-4sGW5hGjrCA | |
// Blocked by context menu (Dark Seas) | |
UC34KnQchv18OwZJ7WouJbqA | |
// Blocked by context menu (Vacuum Bot) | |
UCoa5E2Xonf7NIMFwykez8xw |
[alias] | |
partial-push = "!sh -c | |
'REMOTE=$0;BRANCH=$1;BATCH_SIZE=100; | |
if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
range=$REMOTE/$BRANCH..HEAD; | |
else | |
range=HEAD; | |
fi; | |
n=$(git log --first-parent --format=format:x $range | wc -l); | |
echo "Have to push $n packages in range of $range"; |
on powersave and battery | |
real 0m11.109s | |
user 0m22.276s | |
sys 0m3.989s | |
real 0m10.972s | |
user 0m22.343s | |
sys 0m3.903s |
esphome: | |
name: $devicename | |
platform: ESP8266 | |
board: d1_mini | |
substitutions: | |
devicename: ambient-light-sensor | |
friendly_name: "Ambient Light Sensor" |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
ESPHome camera settings: | |
resolution: 640x480 #Not more needed in my usecase | |
max_framerate: 10 fps | |
idle_framerate: 0.1 fps | |
jpeg_quality: 10 | |
agc_gain_ceiling: 128x | |
aec_mode: auto | |
aec2: true |
"""Calculate jerks in the recent history (sliding exponential average) from lateral acceleration data""" | |
from __future__ import annotations | |
import time | |
from collections import deque | |
from math import hypot | |
from numpy import ma, logspace |