Paul Brown
Paul Brown
You might need another sensor for that. Maybe something like?: https://arduinogetstarted.com/tutorials/arduino-door-sensor I think the access controller only unlocks/locks the latch via the relay (and only for a set amount of...
Yes, :8000 works. It's kinda nice not needing to change ports though? Maybe this line of the readme could be more clear?: >The Vue application will be served from localhost:8080...
Just found this: https://github.com/peterhudec/authomatic/issues/17 It's helpful
Looks like this one can be closed because of https://github.com/eleme/thriftpy/pull/262
I've been using this command to create a file for all possible stubs: ``` monkeytype list-modules | xargs -n1 -I{} sh -c 'monkeytype stub {} > stubs/{}.pyi' ```
This is caused by some compatibility issues between flask_wtf and flask-admin. If you're using flask_wtf just for csrf token validation, I recommend using flask-admin 1.4.0's SecureForm: https://flask-admin.readthedocs.org/en/latest/advanced/
This repository has info about the access controller Dallas Makerspace is using: https://github.com/pawl/Chinese-RFID-Access-Control-Library/ This is the web service we're using to deactivate/activate badges: https://github.com/pawl/Chinese-RFID-Access-Control-Library/blob/master/examples/webserver.py We use a billing system called...
I've been looking more closely at Seltzer. It looks like this request would also involve implementing a Status field (Active/Inactive/Overdue) in the Members section. The cronjob would run each morning...
The purpose of the status field would be to prevent the cronjob from doing the same thing over and over. Once the user goes Overdue, that's the only time we...
Getting the payment balance only shows you whether they are overdue at that time. It doesn't show what actions were taken in the past. So, it looks like the current...