earonesty
earonesty
i don't think there is anyone fully disconnected from anyone else socially. not sure that even exists in this world. i would be willing to bet that if you add...
here's a trace... ``` (node:56977) [DEP0170] DeprecationWarning: The URL ssh://[email protected]:puzzlefin/sqcache-node.git is invalid. Future versions of Node.js will throw an error. at getHostname (node:url:516:17) at Url.parse (node:url:384:14) at urlParse (node:url:141:13) at...
1. you're supposed to do this if you want to iterate linearly over the rows: ``` for await (const row of stream) { await processRow(row); } ``` 2. end is...
does this fix it for you? https://github.com/IdentityPython/pysaml2/pull/895
[SC] StartService FAILED with error 4294967201 + this error in the event log "The resource loader failed to find MUI file". SVM definitely on (i used to run an earlier...
probably it's a better idea to select all the statuses in one query, reducing multiple calls to the db.
honestly, there needs to be a way to list exception classes to not-log-as-errors. throwing exceptions for status is normal behavior for certain functions (think raise NotCachedError) especially in js/python where...
In this library, a raw key is a hex string. For secp256k1, you'll see it start with hex bytes 02, 03 or 04 and be either 33 or 65 bytes...
i think the root cause of a lot of bugs is that you'll get a FileModificationEvent when the access time is updated.