bitnom
bitnom
I started something here: https://github.com/TensorTom/sqlsessions.nim Will probably have a working version in a few days. I'm using sql as a backend since holding sessions state in memory sounds tedious and...
I tried this ``` import asyncdispatch import htmlgen import httpauth import jester import json import parseutils import nwt var backend* {.threadvar.}: HTTPAuthBackend var auth* {.threadvar.}: HTTPAuth var templates* {.threadvar.}: Nwt...
crap. will just make my own damn auth.
I got around the error by producing a `nake -d:debug droid` apk but then I encountered https://github.com/yglukhov/nimx/issues/430
> how does this affect USB and USBGuard? The vulnerability is affecting usb-c/thunderbolt. It's exploited by maliciously interfacing with the usb-c port by various means.
I have that package and I'm still getting this error
On ubuntu ``` $ python3 setup.py build_ext --inplace Using distutils Traceback (most recent call last): File "setup.py", line 108, in cymunk_dirname = loader.path if hasattr(loader, 'path') else loader.filename AttributeError: 'NoneType'...
Tried this `cymunk_dirname = os.path.dirname(loader.path) if hasattr(loader, 'path') else loader.filename` ``` Traceback (most recent call last): File "setup.py", line 108, in cymunk_dirname = os.path.dirname(loader.path) if hasattr(loader, 'path') else loader.filename AttributeError:...
I did not know about the flash example and I implemented my own thing. I didn't use middleware though. I did this: ``` class Session: def __init__(self, session): self.session =...
You mean to check multiple permissions?