Daniel Pfeifer
Daniel Pfeifer
Instead of installing Rust on the Raspberry Pi, I cross-compile Electrs in a Docker container. This is my `Dockerfile`: ```docker FROM debian:bullseye-slim RUN dpkg --add-architecture arm64 \ && apt-get -qq...
Yes, that would be a nice API.
I try `/stats?select=*,sites(*)` without success: ```sql CREATE TABLE projects ( project_id serial PRIMARY KEY, ... ); CREATE TABLE sites ( site_id serial PRIMARY KEY, ... ); CREATE TABLE jobs (...
Correct. It is about the whole directory. That's why I put a `/` at the end.
For formatting, the trickiest command is [`install`](https://cmake.org/cmake/help/latest/command/install.html). IMO, the most readable formatting is: ```cmake install(TARGETS ${targets} EXPORT export_set ARCHIVE DESTINATION lib COMPONENT develop RUNTIME DESTINATION bin COMPONENT runtime ) ```...
I would welcome the following lint rules: * :heavy_check_mark: Builtin commands are used in lowercase. ```cmake ADD_LIBRARY(...) # Bad add_library(...) # Good ``` * :heavy_check_mark: Commands like `ExternalProject_Add` use mixed-case,...