Peter Bendel
Peter Bendel
Hi Tim, I admire your elegant, idiomatic solutions, however sometimes you got lucky. For example in day04 parsing at https://github.com/timvisee/advent-of-code-2020/blob/0dd2865bac2597928f476617664db6b4c4998baa/day04b/src/main.rs#L26 you would panic due to calling `unwrap()` in case the...
Rationale and a suggested solution are given in this pull request https://github.com/olikraus/u8g2/pull/1849
See discussion on https://softwareengineering.stackexchange.com/questions/422507/email-confirmation-links-must-be-get-but-not-safe A better way to handle the email confirmation link instead of a GET request as in your book ``` .route("/subscriptions/confirm", web::get().to(confirm)) ``` would be to: The...
https://github.com/arduino/docs-content/blob/6e50152852645cd0113288a6608c4b8634d83366/content/micropython/01.basics/06.board-examples/board-examples.md?plain=1#L66 https://docs.arduino.cc/micropython/basics/board-examples This example should be corrected to ``` import time from lsm6dsox import LSM6DSOX from machine import Pin, I2C lsm = LSM6DSOX(I2C(0, scl=Pin(13), sda=Pin(12))) while (True): print('Accelerometer: x:{:>8.3f} y:{:>8.3f}...
Upstream PostgreSQL initdb creates a default database postgres and user postgres. According to https://www.postgresql.org/docs/17/app-initdb.html _The postgres database is a default database meant for use by users, utilities and third party...
# TLDR: Autovacuum and analyze (creating statistics) database maintenance operations are important for performance. Without correct statistics we have suboptimal PostgreSQL plans. Without auto vacuum we have table bloat and...