fenchu

Results 57 comments of fenchu

You can fix this so it writes correctly in powershell ``` mkdir \\.rancher mkdir : The path is not of a legal form. ``` it should be: ``` mkdir c:\\.rancher...

Just saw the presentation, It was awesome: https://www.youtube.com/watch?v=WjiTdflkGWE&t=2432s I will use it in my next project

This can be obtained using db.max(), but it is slow ``` def keep_newest(key:str='jobid', maxlen:int=1000) -> Optional[List]: """ keep the newest maxlen entries in database """ global db if not db:...

Tinydb is just a dict of objects keyed from "1" and upwards, It is intended as a simple structure for small datasets. You can cache on the outside by adding...

This works fine with python3. just tested 3.6.5, You are supposed to get UnicodeDecodeError first, but the next works fine.

Thanks ``` pyasn1==0.3.6 pyasn1-modules==0.1.5 sleekxmpp==1.3.3 ```

I get similar error, My challenge is that we have a xmpp proxy, I can authenticate ok, but requesting resources fails, the proxy do not adhere to the standard. ```...

I have the same issue, reason is that launcher.exe is the one that gets into path. Before running add it to your path: `$env:PATH="$($env:PATH);" + "C:\Users\mobj\AppData\Local\Programs\Opera\60.0.3255.170\"`

Needed to explicitly set net5-windows: ``` - net462 + net5-windows - Debug;Release;Win7 Release;Win7 Debug + Debug;Release;Win10 Release;Win10 Debug ```

There are lots of `distutils.strtobool` rout there t: https://github.com/symonsoft/str2bool I had the follwoign in my code stolen from somwhere: ``` #!/usr/bin/env python3 _MAP = { 'y': True, 'yes': True, 't':...