Petrus Theron
Petrus Theron
Updated network-manager running on the RPi to v1.14.4 - same error.
@majorz I get the same error on a Raspberry Pi 3B+ running Raspbian Lite, even after updating to latest distro via apt-get update && ...upgrade && ... dist-upgrade. Are you...
I realize that I was trying with a [Comitup image](https://github.com/davesteele/comitup), which comes pre-installed with NetworkManager. Maybe this was conflicting with wifi-connect? Trying to replicate your steps now using base Raspbian...
When I install wifi-connect on a freshly-flashed RPi 3B (with an wpa_supplicant.conf file so I can connect to it at all over Wifi), dhcpcd is deactivated, the Pi drops off...
Thanks, @filipesilva. You know, I think I could make an impact at Roam, having recently migrated a project from Firestore to Datomic/Datahike. How do I get in touch?
Hm, in issue #48 I found the wrap-default-headers example: ``` (def client-with-auth (wrap-default-headers client/request {"xBasic " "encoded-auth-string"})) ``` Do I have the right idea here?
Broadcasting retains a seemingly infinite buffer, which gradually grows the Rust application's memory: socket.broadcaster().send("some message"); // This accumulates memory infinitely When a new client connects, it first receives of a...
Opened a new issue instead: https://github.com/housleyjk/ws-rs/issues/244
It's pretty easy to define a set of partial function helpers that take a known conn or db, e.g.: ``` (ns helpers (:require '[mamulengo.core :as m]) (def conn (m/create-conn)) (def...
Is `d/transact` asynchronous? You may need to deref the call to d/transact - at least that is how Datomic works. Try `@(d/transact conn ...)` Also, the `datahike:file:` schema might only...