Marek
Marek
Update. I currently have this implementation, which seems to produce a deterministic and reversible cypher-text. Can somebody please verify that I am doing this correctly? ``` function getBytes(e) { var...
Hallo Arjun, Thank you. I managed to implement integer geohash search using my own storage :) However, I get results which I cannot explain. 1. The smaller the search radius,...
I simply run 4 queries ( one for each range I get ) and aggregate the results. I have a feeling that the errors I see might have to do...
Thanks @uzlonewolf. My usecase. I use 5 RGB LED bulbs in my darkroom app (https://github.com/measwel/darkroom). I switch these off, before I switch on the enlarger (via smart outlet). They go...
I read device from device.json based on stored uuids of devices I am interested in. ``` def get_device_handle(device, type): device_id = device["id"] device_ip = device["ip"] device_key = device["key"] device_version =...
It works 👍 Thank you. `dev_handle.set_version(float(device_version))` A few words about what I am building. I am trying to make an app for darkroom work. Tkinter inteface. Red icons on black...
Would indeed be helpful for those who read the device params from devices.json. From a different barrel: what would be a good way to generically test if a device is...
@jasonacox 3 sleepless nights later I have a prototype to show. :) https://github.com/measwel/darkroom Would very much appreciate your feedback.
@jasonacox I can't get error handling quite right. How to check if a device is online? Best I came up with is to d.status() and check for Error message. But...
@jasonacox So I made this threaded routine to check the status of a device after using it. It seems to work, but I do not really know if this makes...